iris/_benchmarks/iris-mvc-templates/controllers/index_controller.go

15 lines
260 B
Go
Raw Normal View History

package controllers
import "github.com/kataras/iris/v12/mvc"
type IndexController struct{}
var indexView = mvc.View{
Name: "index.html",
Data: map[string]interface{}{"Title": "Home Page"},
}
func (c *IndexController) Get() mvc.View {
return indexView
}