mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 10:26:29 +02:00
13 lines
225 B
Go
13 lines
225 B
Go
package config
|
|
|
|
import "errors"
|
|
|
|
const (
|
|
policyKey = "policy"
|
|
toKey = "to"
|
|
healthCheckKey = "health_check"
|
|
)
|
|
|
|
var (
|
|
errKeysMustBeStrings = errors.New("cannot convert nested map: all keys must be strings")
|
|
)
|