mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-06-30 10:05:43 +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:""`
|
|
}
|