(ctx context.Context, comment domain.CommentSearch)
| 103 | } |
| 104 | |
| 105 | func (s *searchRepository) InputComment(ctx context.Context, comment domain.CommentSearch) error { |
| 106 | return s.dao.InputComment(ctx, s.toDaoCommentSearch(comment)) |
| 107 | } |
| 108 | |
| 109 | func (s *searchRepository) toDaoPostSearch(domainPosts domain.PostSearch) dao.PostSearch { |
| 110 | return dao.PostSearch{ |
nothing calls this directly
no test coverage detected