23 lines
		
	
	
		
			410 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			410 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Code generated by goctl. DO NOT EDIT.
 | |
| package handler
 | |
| 
 | |
| import (
 | |
| 	"net/http"
 | |
| 
 | |
| 	"fusenapi/server/pay/internal/svc"
 | |
| 
 | |
| 	"github.com/zeromicro/go-zero/rest"
 | |
| )
 | |
| 
 | |
| func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
 | |
| 	server.AddRoutes(
 | |
| 		[]rest.Route{
 | |
| 			{
 | |
| 				Method:  http.MethodPost,
 | |
| 				Path:    "/api/pay/payment-intent",
 | |
| 				Handler: OrderPaymentIntentHandler(serverCtx),
 | |
| 			},
 | |
| 		},
 | |
| 	)
 | |
| }
 |