fusenapi/product/internal/handler/routes.go

29 lines
579 B
Go
Raw Normal View History

2023-06-01 07:32:28 +00:00
// Code generated by goctl. DO NOT EDIT.
package handler
import (
"net/http"
"fusenapi/product/internal/svc"
"github.com/zeromicro/go-zero/rest"
)
func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
server.AddRoutes(
[]rest.Route{
{
Method: http.MethodGet,
Path: "/product/list",
Handler: GetProductListHandler(serverCtx),
},
2023-06-06 07:30:12 +00:00
{
Method: http.MethodGet,
Path: "/product/success-recommand",
Handler: GetSuccessRecommandHandler(serverCtx),
},
2023-06-01 07:32:28 +00:00
},
2023-06-07 03:35:04 +00:00
rest.WithJwt(serverCtx.Config.Auth.AccessSecret),
2023-06-01 07:32:28 +00:00
)
}