mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-05-14 13:16:51 +00:00
* Remove `logger` module * Remove `shared` module * Move `cli` folder contents into project root * Fix linter * Change the module name from `github.com/kubeshark/kubeshark/cli` to `github.com/kubeshark/kubeshark` * Set the default `Makefile` rule to `build` * Add `lint` rule * Fix the linter errors
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:""`
|
|
}
|