kubeshark/cli/config/configStructs/configConfig.go

10 lines
175 B
Go

package configStructs
const (
RegenerateConfigName = "regenerate"
)
type ConfigConfig struct {
Regenerate bool `yaml:"regenerate,omitempty" default:"false" readonly:""`
}