harbor/controllers/dashboard.go
2016-06-28 23:42:05 +08:00

12 lines
257 B
Go

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