mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-22 08:38:03 +01:00
10 lines
140 B
Go
10 lines
140 B
Go
|
package ng
|
||
|
|
||
|
type SignUpController struct {
|
||
|
BaseController
|
||
|
}
|
||
|
|
||
|
func (suc *SignUpController) Get() {
|
||
|
suc.Forward("Sign Up", "sign-up.htm")
|
||
|
}
|