2023-06-25 10:30:39 +00:00
|
|
|
// Code generated by goctl. DO NOT EDIT.
|
|
|
|
package handler
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"fusenapi/server/backend/internal/svc"
|
|
|
|
|
|
|
|
"github.com/zeromicro/go-zero/rest"
|
|
|
|
)
|
|
|
|
|
|
|
|
func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
|
|
|
|
server.AddRoutes(
|
|
|
|
[]rest.Route{
|
|
|
|
{
|
|
|
|
Method: http.MethodGet,
|
2023-07-12 06:11:04 +00:00
|
|
|
Path: "/api/quotation/detail",
|
2023-06-25 10:30:39 +00:00
|
|
|
Handler: QuotationDetailHandler(serverCtx),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Method: http.MethodPost,
|
2023-07-12 06:11:04 +00:00
|
|
|
Path: "/api/backend-user/login",
|
2023-06-25 10:30:39 +00:00
|
|
|
Handler: BackendUserLoginHandler(serverCtx),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|