iris/_examples/structuring/mvc/app/controllers/index/controller.go

15 lines
180 B
Go
Raw Normal View History

package index
import (
"github.com/kataras/iris"
)
type Controller struct {
iris.Controller
}
func (c *Controller) Get() {
c.Data["Title"] = "Index"
c.Tmpl = "index.html"
}