(ctx context.Context, commentID string)
| 53 | type CommentRepo interface { |
| 54 | AddComment(ctx context.Context, comment *entity.Comment) (err error) |
| 55 | RemoveComment(ctx context.Context, commentID string) (err error) |
| 56 | UpdateCommentContent(ctx context.Context, commentID string, original string, parsedText string) (err error) |
| 57 | UpdateCommentStatus(ctx context.Context, commentID string, status int) (err error) |
| 58 | GetComment(ctx context.Context, commentID string) (comment *entity.Comment, exist bool, err error) |
no outgoing calls