mirror of
https://github.com/kataras/iris.git
synced 2025-12-18 18:37:05 +00:00
Structuring examples - Pushed to iris-contrib/examples as well.
Former-commit-id: 24ee6ce233d83f0b394afc6c69b5a88243406045
This commit is contained in:
20
_examples/structuring/bootstrap/main.go
Normal file
20
_examples/structuring/bootstrap/main.go
Normal file
@@ -0,0 +1,20 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"github.com/kataras/iris/_examples/structuring/bootstrap/bootstrap"
|
||||
"github.com/kataras/iris/_examples/structuring/bootstrap/middleware/identity"
|
||||
"github.com/kataras/iris/_examples/structuring/bootstrap/routes"
|
||||
)
|
||||
|
||||
var app = bootstrap.New("Awesome App", "kataras2006@hotmail.com",
|
||||
identity.Configure,
|
||||
routes.Configure,
|
||||
)
|
||||
|
||||
func init() {
|
||||
app.Bootstrap()
|
||||
}
|
||||
|
||||
func main() {
|
||||
app.Listen(":8080")
|
||||
}
|
||||
Reference in New Issue
Block a user