Files
kubesphere/pkg/simple/client/metering/options.go
2021-03-30 15:46:16 +08:00

10 lines
144 B
Go

package metering
type Options struct {
Enable bool `json:"enable" yaml:"enable"`
}
func NewMeteringOptions() *Options {
return &Options{}
}