harbor/controllers/ng/dashboard.go
2016-06-02 15:44:53 +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")
}