mirror of
https://github.com/kataras/iris.git
synced 2025-01-27 04:26:33 +01:00
11277f12a0
Former-commit-id: 24ee6ce233d83f0b394afc6c69b5a88243406045
21 lines
420 B
Go
21 lines
420 B
Go
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")
|
|
}
|