(ctx context.Context, commentId uint)
| 99 | return s.dao.DeletePostIndex(ctx, postId) |
| 100 | } |
| 101 | func (s *searchRepository) DeleteCommentIndex(ctx context.Context, commentId uint) error { |
| 102 | return s.dao.DeleteCommentIndex(ctx, commentId) |
| 103 | } |
| 104 | |
| 105 | func (s *searchRepository) InputComment(ctx context.Context, comment domain.CommentSearch) error { |
| 106 | return s.dao.InputComment(ctx, s.toDaoCommentSearch(comment)) |
nothing calls this directly
no test coverage detected