mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-09-28 22:08:34 +00:00
10 lines
140 B
Go
10 lines
140 B
Go
package configStructs
|
|
|
|
const (
|
|
GuiPortViewName = "gui-port"
|
|
)
|
|
|
|
type ViewConfig struct {
|
|
GuiPort uint16 `yaml:"gui-port" default:"8899"`
|
|
}
|