mirror of
https://github.com/kataras/iris.git
synced 2025-12-19 02:47:04 +00: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"
|
|
)
|