mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-06-04 22:21:14 +00:00
12 lines
216 B
Go
12 lines
216 B
Go
package configStructs
|
|
|
|
const (
|
|
GuiPortViewName = "gui-port"
|
|
UrlViewName = "url"
|
|
)
|
|
|
|
type ViewConfig struct {
|
|
GuiPort uint16 `yaml:"gui-port" default:"8899"`
|
|
Url string `yaml:"url,omitempty" readonly:""`
|
|
}
|