iris/_examples/mvc/overview/environment/environment.go

11 lines
166 B
Go
Raw Normal View History

package environment
// Env is the environment type.
type Env string
// Available environments example.
const (
PROD Env = "production"
DEV Env = "development"
)