Files
kubeshark/cli/config/config.go
2021-04-21 17:35:08 +03:00

14 lines
239 B
Go

package config
type Options struct {
DisplayVersion bool
Quiet bool
NoDashboard bool
DashboardPort uint16
Namespace string
AllNamespaces bool
KubeConfigPath string
}
var Configuration = &Options{}