mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
15 lines
257 B
Go
15 lines
257 B
Go
|
package controllers
|
||
|
|
||
|
import "github.com/kataras/iris/mvc"
|
||
|
|
||
|
type IndexControllerHeavy struct{ mvc.C }
|
||
|
|
||
|
func (c *IndexControllerHeavy) Get() mvc.View {
|
||
|
return mvc.View{
|
||
|
Name: "index.html",
|
||
|
Data: map[string]interface{}{
|
||
|
"Title": "Home Page",
|
||
|
},
|
||
|
}
|
||
|
}
|