mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-20 15:48:26 +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")
|
||
|
}
|