mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-27 20:59:10 +01:00
10 lines
132 B
Go
10 lines
132 B
Go
package ng
|
|
|
|
type IndexController struct {
|
|
BaseController
|
|
}
|
|
|
|
func (ic *IndexController) Get() {
|
|
ic.Forward("Index", "index.htm")
|
|
}
|