mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 03:01:03 +01:00
21 lines
285 B
Go
21 lines
285 B
Go
|
package main
|
||
|
|
||
|
import "github.com/kataras/iris"
|
||
|
|
||
|
func main() {
|
||
|
app := iris.New()
|
||
|
|
||
|
tmpl := iris.Pug("./templates", ".pug")
|
||
|
|
||
|
app.RegisterView(tmpl)
|
||
|
|
||
|
app.Get("/", index)
|
||
|
|
||
|
// http://localhost:8080
|
||
|
app.Run(iris.Addr(":8080"))
|
||
|
}
|
||
|
|
||
|
func index(ctx iris.Context) {
|
||
|
ctx.View("index.pug")
|
||
|
}
|