// Code generated by goctl. DO NOT EDIT. package handler import ( "net/http" "bp.jydev.jianyu360.cn/ApplicationCenter/threeMarket/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: "/tripartite/comment/add", Handler: assessAddHandler(serverCtx), }, { Method: http.MethodPost, Path: "/tripartite/assess/list", Handler: assessListHandler(serverCtx), }, { Method: http.MethodPost, Path: "/tripartite/service/buy", Handler: buyServiceHandler(serverCtx), }, { Method: http.MethodPost, Path: "/tripartite/confirm/receipt", Handler: confirmReceiptHandler(serverCtx), }, }, ) }