14 lines
281 B
Go
14 lines
281 B
Go
package ca
|
|
|
|
import (
|
|
"f5"
|
|
"main/api/ca"
|
|
)
|
|
|
|
type LoginRouter struct{}
|
|
|
|
func (this *LoginRouter) InitLoginRouter() {
|
|
f5.GetApp().RegisterCaHandle("Login", "getNonce", ca.ApiGroupApp.LoginApi.GetNonce)
|
|
f5.GetApp().RegisterCaHandle("Login", "auth", ca.ApiGroupApp.LoginApi.Auth)
|
|
}
|