mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-18 07:56:56 +00:00
11 lines
178 B
Go
11 lines
178 B
Go
|
|
package interfaces
|
||
|
|
|
||
|
|
import (
|
||
|
|
"go.signoz.io/signoz/pkg/query-service/model"
|
||
|
|
)
|
||
|
|
|
||
|
|
type FeatureLookup interface {
|
||
|
|
CheckFeature(f string) error
|
||
|
|
GetFeatureFlags() model.FeatureSet
|
||
|
|
}
|