harbor/controllers/ng/dashboard.go
2016-04-11 16:07:16 +08:00

10 lines
148 B
Go

package ng
type DashboardController struct {
BaseController
}
func (dc *DashboardController) Get() {
dc.Forward("Dashboard", "dashboard.htm")
}