// Code scaffolded by goctl. Safe to edit. // goctl 1.9.2 package common import ( "context" "github.com/zero-ppanel/zero-ppanel/apps/api/internal/svc" "github.com/zero-ppanel/zero-ppanel/apps/api/internal/types" "github.com/zeromicro/go-zero/core/logx" ) type GetSubscribeListLogic struct { logx.Logger ctx context.Context svcCtx *svc.ServiceContext } func NewGetSubscribeListLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetSubscribeListLogic { return &GetSubscribeListLogic{ Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx, } } func (l *GetSubscribeListLogic) GetSubscribeList() (resp []types.SubscribeResp, err error) { // todo: add your logic here and delete this line return }