mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
49ee8f2d75
Former-commit-id: 6a3579f2500fc715d7dc606478960946dcade61d
17 lines
273 B
Go
17 lines
273 B
Go
package controllers
|
|
|
|
import "github.com/kataras/iris/mvc"
|
|
|
|
type IndexControllerStatic struct{ mvc.C }
|
|
|
|
var index = mvc.View{
|
|
Name: "index.html",
|
|
Data: map[string]interface{}{
|
|
"Title": "Home Page",
|
|
},
|
|
}
|
|
|
|
func (c *IndexControllerStatic) Get() mvc.View {
|
|
return index
|
|
}
|