Files
kubeshark/cli/mizu/configStructs/versionConfig.go
2021-08-03 17:23:52 +03:00

10 lines
143 B
Go

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