harbor/controllers/ng/index.go

10 lines
132 B
Go
Raw Normal View History

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