iris/_examples/structuring/bootstrap/routes/index.go
Gerasimos (Makis) Maropoulos 11277f12a0 Structuring examples - Pushed to iris-contrib/examples as well.
Former-commit-id: 24ee6ce233d83f0b394afc6c69b5a88243406045
2017-10-22 16:04:11 +03:00

12 lines
197 B
Go

package routes
import (
"github.com/kataras/iris"
)
// GetIndexHandler handles the GET: /
func GetIndexHandler(ctx iris.Context) {
ctx.ViewData("Title", "Index Page")
ctx.View("index.html")
}