mirror of
https://github.com/kataras/iris.git
synced 2025-12-18 10:27:06 +00:00
add a new 'overview' MVC example
Former-commit-id: f73cbf6010595c639f6c5b5119e2ec41bc9802a5
This commit is contained in:
10
_examples/mvc/overview/environment/environment.go
Normal file
10
_examples/mvc/overview/environment/environment.go
Normal file
@@ -0,0 +1,10 @@
|
||||
package environment
|
||||
|
||||
// Env is the environment type.
|
||||
type Env string
|
||||
|
||||
// Available environments example.
|
||||
const (
|
||||
PROD Env = "production"
|
||||
DEV Env = "development"
|
||||
)
|
||||
Reference in New Issue
Block a user