mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-29 03:22:02 +08:00
14 lines
337 B
Go
14 lines
337 B
Go
package interfaces
|
|
|
|
import (
|
|
"github.com/SigNoz/signoz/pkg/query-service/model"
|
|
)
|
|
|
|
type FeatureLookup interface {
|
|
CheckFeature(f string) error
|
|
GetFeatureFlags() (model.FeatureSet, error)
|
|
GetFeatureFlag(f string) (model.Feature, error)
|
|
UpdateFeatureFlag(features model.Feature) error
|
|
InitFeatures(features model.FeatureSet) error
|
|
}
|