kubeshark/cli/config/configStructs/versionConfig.go
2021-08-11 09:56:03 +03:00

10 lines
143 B
Go

package configStructs
const (
DebugInfoVersionName = "debug"
)
type VersionConfig struct {
DebugInfo bool `yaml:"debug" default:"false"`
}