goldwarden/agent/systemauth/systemauth.go

12 lines
173 B
Go
Raw Normal View History

2023-08-21 19:37:34 +03:00
package systemauth
import "os"
var systemAuthDisabled = false
func init() {
if os.Getenv("GOLDWARDEN_SYSTEM_AUTH_DISABLED") == "true" {
systemAuthDisabled = true
}
}