12345678910111213141516171819202122 |
- // Code generated by goctl. DO NOT EDIT.
- package handler
- import (
- "net/http"
- "bp.jydev.jianyu360.cn/BaseService/goodsCenter/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: "/goodsCenter/getBaseGoodsStandClassify",
- Handler: getBaseGoodsStandClassifyHandler(serverCtx),
- },
- },
- )
- }
|