Files
kubescape/core/cautils/rootinfo.go
2022-09-07 13:42:35 +05:30

20 lines
485 B
Go

package cautils
type RootInfo struct {
Logger string // logger level
LoggerName string // logger name ("pretty"/"zap"/"none")
CacheDir string // cached dir
DisableColor bool // Disable Color
EnableColor bool // Force enable Color
KSCloudBEURLs string // Kubescape Cloud URL
KSCloudBEURLsDep string // Kubescape Cloud URL
KubeConfig string //kubeconfig flag
}
type Credentials struct {
Account string
ClientID string
SecretKey string
}