mirror of
https://github.com/kubescape/kubescape.git
synced 2026-04-15 06:58:11 +00:00
19 lines
393 B
Go
19 lines
393 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
|
|
|
|
KSCloudBEURLs string // Kubescape Cloud URL
|
|
KSCloudBEURLsDep string // Kubescape Cloud URL
|
|
|
|
}
|
|
|
|
type Credentials struct {
|
|
Account string
|
|
ClientID string
|
|
SecretKey string
|
|
}
|