mirror of
https://github.com/kubescape/kubescape.git
synced 2026-02-14 09:59:54 +00:00
21 lines
264 B
Go
21 lines
264 B
Go
package config
|
|
|
|
var accessKey string
|
|
var account string
|
|
|
|
func SetAccessKey(key string) {
|
|
accessKey = key
|
|
}
|
|
|
|
func GetAccessKey() string {
|
|
return accessKey
|
|
}
|
|
|
|
func SetAccount(accountId string) {
|
|
account = accountId
|
|
}
|
|
|
|
func GetAccount() string {
|
|
return account
|
|
}
|