mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-20 23:57:42 +01:00
13 lines
220 B
Go
13 lines
220 B
Go
package ng
|
|
|
|
import "os"
|
|
|
|
type RepositoryController struct {
|
|
BaseController
|
|
}
|
|
|
|
func (rc *RepositoryController) Get() {
|
|
rc.Data["HarborRegUrl"] = os.Getenv("HARBOR_REG_URL")
|
|
rc.Forward("Repository", "repository.htm")
|
|
}
|