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

18 lines
316 B
Go
Raw Normal View History

package controllers
import "github.com/kataras/iris/v12/mvc"
type AboutController struct{}
var aboutView = mvc.View{
Name: "about.html",
Data: map[string]interface{}{
"Title": "About",
"Message": "Your application description page..",
},
}
func (c *AboutController) Get() mvc.View {
return aboutView
}