GetMoreCommentsReply 获取更多评论回复的实现
(ctx context.Context, rootId, maxId, limit int64)
| 77 | |
| 78 | // GetMoreCommentsReply 获取更多评论回复的实现 |
| 79 | func (c *commentService) GetMoreCommentsReply(ctx context.Context, rootId, maxId, limit int64) ([]domain.Comment, error) { |
| 80 | return c.repo.GetMoreCommentsReply(ctx, rootId, maxId, limit) |
| 81 | } |
| 82 | |
| 83 | // ListComments 列出评论的实现 |
| 84 | func (c *commentService) ListComments(ctx context.Context, postId, minID, limit int64) ([]domain.Comment, error) { |
nothing calls this directly
no test coverage detected