(ctx context.Context, event []domain.ReadEvent)
| 88 | } |
| 89 | |
| 90 | func (s *searchRepository) BulkInputLogs(ctx context.Context, event []domain.ReadEvent) error { |
| 91 | return s.dao.BulkInputLogs(ctx, s.toDaoReadEvent(event)) |
| 92 | } |
| 93 | |
| 94 | func (s *searchRepository) DeleteUserIndex(ctx context.Context, userId int64) error { |
| 95 | return s.dao.DeleteUserIndex(ctx, userId) |
nothing calls this directly
no test coverage detected