func GetHandlerEnvironment()

in settings/settings.go [26:30]


func GetHandlerEnvironment() (HandlerEnvironment, error) {
	// temporary work around since type alias is avail in 1.9 and build box only support 1.8
	he, err := settings.GetEnvironment()
	return HandlerEnvironment(he), err
}