mirror of
https://github.com/kubescape/kubescape.git
synced 2026-04-15 06:58:11 +00:00
20 lines
485 B
Go
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
|
|
}
|