iris/_examples/tutorial/mvc-from-scratch/controllers/index.go

13 lines
215 B
Go
Raw Normal View History

package controllers
// Index is our index example controller.
type Index struct {
Controller
}
func (c *Index) Get() {
c.Tmpl = "index.html"
c.Data["title"] = "Index page"
c.Data["message"] = "Hello world!"
}