// Code generated by goctl. DO NOT EDIT. // goctl 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) } }