harbor/controllers/ng/dashboard.go
2016-05-23 15:43:15 +08:00

12 lines
240 B
Go

package ng
// DashboardController handles requests to /ng/dashboard
type DashboardController struct {
BaseController
}
// Get renders the dashboard page
func (dc *DashboardController) Get() {
dc.Forward("Dashboard", "dashboard.htm")
}