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

21 lines
501 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 GetBillingSubscriptionHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
l := billing.NewGetBillingSubscriptionLogic(r.Context(), svcCtx)
data, err := l.GetBillingSubscription()
response.Write(r.Context(), w, data, err)
}
}