mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
9e6691e5ce
Former-commit-id: 10b4952308c62b81eb7270b9e0b29ad0bb645bc5
15 lines
256 B
Go
15 lines
256 B
Go
package controllers
|
|
|
|
import "github.com/kataras/iris/mvc"
|
|
|
|
type IndexController struct{}
|
|
|
|
var indexView = mvc.View{
|
|
Name: "index.html",
|
|
Data: map[string]interface{}{"Title": "Home Page"},
|
|
}
|
|
|
|
func (c *IndexController) Get() mvc.View {
|
|
return indexView
|
|
}
|