package subscriptionservicelogic import ( "context" "app-cloudep-trade-service/gen_result/pb/trade" "app-cloudep-trade-service/internal/svc" "github.com/zeromicro/go-zero/core/logx" ) type CreateSubscriptionLogic struct { ctx context.Context svcCtx *svc.ServiceContext logx.Logger } func NewCreateSubscriptionLogic(ctx context.Context, svcCtx *svc.ServiceContext) *CreateSubscriptionLogic { return &CreateSubscriptionLogic{ ctx: ctx, svcCtx: svcCtx, Logger: logx.WithContext(ctx), } } // CreateSubscription 建立訂閱 func (l *CreateSubscriptionLogic) CreateSubscription(in *trade.SubscriptionCreateReq) (*trade.SubscriptionResp, error) { // todo: add your logic here and delete this line return &trade.SubscriptionResp{}, nil }