mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-06 01:07:03 +00:00
16 lines
391 B
Go
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()
|
|
)
|