mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-02 16:49:48 +01:00
12 lines
211 B
Go
12 lines
211 B
Go
package controllers
|
|
|
|
// IndexController handles request to /
|
|
type IndexController struct {
|
|
BaseController
|
|
}
|
|
|
|
// Get renders the index page
|
|
func (ic *IndexController) Get() {
|
|
ic.Forward("Index", "index.htm")
|
|
}
|