package logic import ( "context" "app.yhyue.com/moapp/jyInfo/api/internal/svc" "app.yhyue.com/moapp/jyInfo/api/internal/types" "github.com/zeromicro/go-zero/core/logx" ) type OneKeyActionLogic struct { logx.Logger ctx context.Context svcCtx *svc.ServiceContext } func NewOneKeyActionLogic(ctx context.Context, svcCtx *svc.ServiceContext) *OneKeyActionLogic { return &OneKeyActionLogic{ Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx, } } func (l *OneKeyActionLogic) OneKeyAction(req *types.MyPublishCommonReq) (resp *types.CommonRes, err error) { // todo: add your logic here and delete this line return }