Any feature flag provider has to implement this interface.
| 13 | |
| 14 | // Any feature flag provider has to implement this interface. |
| 15 | type FlaggerProvider interface { |
| 16 | openfeature.FeatureProvider |
| 17 | |
| 18 | // List returns all the feature flags |
| 19 | List(ctx context.Context) ([]*featuretypes.GettableFeature, error) |
| 20 | } |
| 21 | |
| 22 | // This is the consumer facing interface for the Flagger service. |
| 23 | type Flagger interface { |
nothing calls this directly
no outgoing calls
no test coverage detected