12 lines
173 B
Go
12 lines
173 B
Go
package systemauth
|
|
|
|
import "os"
|
|
|
|
var systemAuthDisabled = false
|
|
|
|
func init() {
|
|
if os.Getenv("GOLDWARDEN_SYSTEM_AUTH_DISABLED") == "true" {
|
|
systemAuthDisabled = true
|
|
}
|
|
}
|