2023-11-13 09:52:20 +00:00
|
|
|
// Code generated by goctl. DO NOT EDIT.
|
|
|
|
package handler
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"fusenapi/server/ldap-admin/internal/svc"
|
|
|
|
|
|
|
|
"github.com/zeromicro/go-zero/rest"
|
|
|
|
)
|
|
|
|
|
|
|
|
func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
|
|
|
|
server.AddRoutes(
|
|
|
|
[]rest.Route{
|
|
|
|
{
|
2023-11-14 03:26:08 +00:00
|
|
|
Method: http.MethodGet,
|
2023-11-13 09:52:20 +00:00
|
|
|
Path: "/api/ldap-admin/get_departments",
|
|
|
|
Handler: GetDepartmentsHandler(serverCtx),
|
|
|
|
},
|
2023-11-14 07:03:01 +00:00
|
|
|
{
|
|
|
|
Method: http.MethodGet,
|
|
|
|
Path: "/api/ldap-admin/get_apis",
|
|
|
|
Handler: GetApisHandler(serverCtx),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Method: http.MethodPost,
|
|
|
|
Path: "/api/ldap-admin/save_api",
|
|
|
|
Handler: SaveApiHandler(serverCtx),
|
|
|
|
},
|
2023-11-13 09:52:20 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|