fusenapi/server/shopping-cart-confirmation/internal/handler/cartnumberhandler.go

18 lines
380 B
Go
Raw Normal View History

2023-06-13 06:29:44 +00:00
package handler
import (
"net/http"
"fusenapi/server/shopping-cart-confirmation/internal/logic"
"fusenapi/server/shopping-cart-confirmation/internal/svc"
)
func CartNumberHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
2023-06-15 04:00:32 +00:00
2023-06-13 06:29:44 +00:00
l := logic.NewCartNumberLogic(r.Context(), svcCtx)
resp := l.CartNumber(userinfo)
2023-07-21 06:20:21 +00:00
2023-06-13 06:29:44 +00:00
}
}