kruise-game/cloudprovider/options/tencentcloud_options.go

14 lines
208 B
Go

package options
type TencentCloudOptions struct {
Enable bool `toml:"enable"`
}
func (o TencentCloudOptions) Enabled() bool {
return o.Enable
}
func (o TencentCloudOptions) Valid() bool {
return true
}