EnableFeatures enables the given features on the global registry.
(features ...string)
| 18 | |
| 19 | // EnableFeatures enables the given features on the global registry. |
| 20 | func EnableFeatures(features ...string) { |
| 21 | globalRegistry.EnableFeatures(features...) |
| 22 | } |
| 23 | |
| 24 | // DisableFeatures disables the given features on the global registry. |
| 25 | func DisableFeatures(features ...string) { |