Files
kubescape/httphandler/config/credentials.go
rcohencyberarmor 052c042dac Support backend access key (#1404)
Support backend access key

Signed-off-by: Amir Malka <amirm@armosec.io>
2023-10-22 15:10:08 +03:00

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
}