fusenapi/server/orders/internal/handler/routes.go

23 lines
400 B
Go
Raw Normal View History

2023-06-15 07:28:17 +00:00
// Code generated by goctl. DO NOT EDIT.
package handler
import (
"net/http"
"fusenapi/server/orders/internal/svc"
"github.com/zeromicro/go-zero/rest"
)
func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
server.AddRoutes(
[]rest.Route{
{
Method: http.MethodGet,
Path: "/order/invoice",
Handler: GetOrderInvoiceHandler(serverCtx),
},
},
)
}