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