mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-07 11:10:16 +01:00
10 lines
148 B
Go
10 lines
148 B
Go
package ng
|
|
|
|
type DashboardController struct {
|
|
BaseController
|
|
}
|
|
|
|
func (dc *DashboardController) Get() {
|
|
dc.Forward("Dashboard", "dashboard.htm")
|
|
}
|