Files
kubeshark--kubeshark/config/configStructs/configConfig.go
T
2026-07-13 12:49:06 +08:00

10 lines
203 B
Go

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