pomerium/config/constants.go
2021-01-21 15:23:06 -05:00

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")
)