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