mirror of
https://github.com/kataras/iris.git
synced 2025-02-02 23:40:35 +01:00
d55bb34766
Former-commit-id: f73cbf6010595c639f6c5b5119e2ec41bc9802a5
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"
|
|
)
|