mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
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")
|
||
|
}
|