thread-master/apps/backend/internal/handler/billing/handle_stripe_webhook_handl...

21 lines
485 B
Go

// Code generated by goctl. DO NOT EDIT.
// goctl <no value>
package billing
import (
"net/http"
"apps/backend/internal/logic/billing"
"apps/backend/internal/response"
"apps/backend/internal/svc"
)
func HandleStripeWebhookHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
l := billing.NewHandleStripeWebhookLogic(r.Context(), svcCtx)
err := l.HandleStripeWebhook()
response.Write(r.Context(), w, nil, err)
}
}