3pl/partnerapi/shiip/env.go

10 lines
106 B
Go

package shiip
// ENV ...
type ENV string
const (
EnvStaging ENV = "STAGING"
EnvProd ENV = "PROD"
)