harbor/controllers/ng/index.go

10 lines
130 B
Go
Raw Normal View History

2016-04-11 10:07:16 +02:00
package ng
type IndexController struct {
BaseController
}
func (c *IndexController) Get() {
c.Forward("Index", "index.htm")
}