mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-05-18 15:17:10 +00:00
12 lines
238 B
Go
12 lines
238 B
Go
package configStructs
|
|
|
|
const (
|
|
GuiPortViewName = "gui-port"
|
|
KubeConfigPathViewName = "kube-config"
|
|
)
|
|
|
|
type ViewConfig struct {
|
|
GuiPort uint16 `yaml:"gui-port" default:"8899"`
|
|
KubeConfigPath string `yaml:"kube-config"`
|
|
}
|