mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 19:21:03 +01:00
15 lines
180 B
Go
15 lines
180 B
Go
|
package index
|
||
|
|
||
|
import (
|
||
|
"github.com/kataras/iris"
|
||
|
)
|
||
|
|
||
|
type Controller struct {
|
||
|
iris.Controller
|
||
|
}
|
||
|
|
||
|
func (c *Controller) Get() {
|
||
|
c.Data["Title"] = "Index"
|
||
|
c.Tmpl = "index.html"
|
||
|
}
|