(ctx context.Context, userId int64)
| 92 | } |
| 93 | |
| 94 | func (s *searchRepository) DeleteUserIndex(ctx context.Context, userId int64) error { |
| 95 | return s.dao.DeleteUserIndex(ctx, userId) |
| 96 | } |
| 97 | |
| 98 | func (s *searchRepository) DeletePostIndex(ctx context.Context, postId uint) error { |
| 99 | return s.dao.DeletePostIndex(ctx, postId) |
nothing calls this directly
no test coverage detected