Files
open-cluster-management/pkg/features/feature.go
Zhiwei Yin f44670d314 update provider name (#453)
Signed-off-by: Zhiwei Yin <zyin@redhat.com>
2024-05-09 22:54:56 +00:00

16 lines
391 B
Go

// Copyright Contributors to the Open Cluster Management project
package features
import (
"k8s.io/component-base/featuregate"
)
var (
// HubMutableFeatureGate of multiple mutable feature-gate for hub
HubMutableFeatureGate = featuregate.NewFeatureGate()
// SpokeMutableFeatureGate of multiple mutable feature-gates for agent
SpokeMutableFeatureGate = featuregate.NewFeatureGate()
)