(ctx context.Context, post domain.PostSearch)
| 68 | } |
| 69 | |
| 70 | func (s *searchRepository) InputPost(ctx context.Context, post domain.PostSearch) error { |
| 71 | return s.dao.InputPost(ctx, s.toDaoPostSearch(post)) |
| 72 | } |
| 73 | |
| 74 | func (s *searchRepository) BulkInputPosts(ctx context.Context, posts []domain.PostSearch) error { |
| 75 | var daoPosts []dao.PostSearch |
nothing calls this directly
no test coverage detected