mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-06-23 14:58:44 +00:00
10 lines
175 B
Go
10 lines
175 B
Go
package configStructs
|
|
|
|
const (
|
|
RegenerateConfigName = "regenerate"
|
|
)
|
|
|
|
type ConfigConfig struct {
|
|
Regenerate bool `yaml:"regenerate,omitempty" default:"false" readonly:""`
|
|
}
|