This commit is contained in:
laodaming
2023-06-06 15:30:12 +08:00
parent e8aabdb3cf
commit d31f3a1e41
3 changed files with 39 additions and 0 deletions

View File

@@ -17,6 +17,11 @@ func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
Path: "/product/list",
Handler: GetProductListHandler(serverCtx),
},
{
Method: http.MethodGet,
Path: "/product/success-recommand",
Handler: GetSuccessRecommandHandler(serverCtx),
},
},
)
}