mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 03:01:03 +01:00
11 lines
166 B
Go
11 lines
166 B
Go
|
package environment
|
||
|
|
||
|
// Env is the environment type.
|
||
|
type Env string
|
||
|
|
||
|
// Available environments example.
|
||
|
const (
|
||
|
PROD Env = "production"
|
||
|
DEV Env = "development"
|
||
|
)
|