123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- // Code generated by goctl. DO NOT EDIT.
- package handler
- import (
- "net/http"
- "bp.jydev.jianyu360.cn/BaseService/biService/api/internal/svc"
- "github.com/zeromicro/go-zero/rest"
- )
- func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
- server.AddRoutes(
- []rest.Route{
- {
- Method: http.MethodPost,
- Path: "/biService/myDataAsset",
- Handler: MyDataAssetHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/addProject",
- Handler: AddProjectReqHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/getInfoId",
- Handler: GetInfoIdHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/drawClue",
- Handler: DrawClueHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/call",
- Handler: CallHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/distributeClue",
- Handler: DistributeClueHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/clueImport",
- Handler: ClueImportHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/biService/ClueAdd",
- Handler: ClueAddHandler(serverCtx),
- },
- },
- )
- }
|