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

21 lines
501 B
Go
Raw Normal View History

2026-07-15 15:23:59 +00:00
// 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)
}
}