(ctx context.Context, user domain.UserSearch)
| 64 | } |
| 65 | |
| 66 | func (s *searchRepository) InputUser(ctx context.Context, user domain.UserSearch) error { |
| 67 | return s.dao.InputUser(ctx, s.toDaoUserSearch(user)) |
| 68 | } |
| 69 | |
| 70 | func (s *searchRepository) InputPost(ctx context.Context, post domain.PostSearch) error { |
| 71 | return s.dao.InputPost(ctx, s.toDaoPostSearch(post)) |
nothing calls this directly
no test coverage detected