(ctx context.Context, comment domain.Comment)
| 26 | GetTopCommentsReply(ctx context.Context, postId int64) (domain.Comment, error) |
| 27 | FindCommentByCommentId(ctx context.Context, commentId int64) (domain.Comment, error) |
| 28 | UpdateComment(ctx context.Context, comment domain.Comment) error |
| 29 | } |
| 30 | |
| 31 | func NewCommentRepository(dao dao.CommentDAO, cache cache.CommentCache) CommentRepository { |
no outgoing calls
no test coverage detected