package globalcare
// ENV ...
type ENV string
const (
EnvDev ENV = "DEV"
EnvStaging ENV = "STAGING"
EnvProd ENV = "PROD"
)