package logic import ( "context" "slow_wild_api/apps/internal/svc" "slow_wild_api/apps/internal/types" "github.com/zeromicro/go-zero/core/logx" ) type PostReplyLogic struct { logx.Logger ctx context.Context svcCtx *svc.ServiceContext } func NewPostReplyLogic(ctx context.Context, svcCtx *svc.ServiceContext) *PostReplyLogic { return &PostReplyLogic{ Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx, } } func (l *PostReplyLogic) PostReply(req *types.PostReplyReq) (resp *types.PostReplyRsp, err error) { // todo: add your logic here and delete this line return }