mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-06-23 06:48:47 +00:00
10 lines
143 B
Go
10 lines
143 B
Go
package configStructs
|
|
|
|
const (
|
|
DebugInfoVersionName = "debug"
|
|
)
|
|
|
|
type VersionConfig struct {
|
|
DebugInfo bool `yaml:"debug" default:"false"`
|
|
}
|