package onpoint

// ENV ...
type ENV string

const (
	EnvStaging ENV = "STAGING"
	EnvProd    ENV = "PROD"
)