(ctx context.Context, tenant string)
| 70 | } |
| 71 | |
| 72 | func (r *readerWriter) ListBlocks(ctx context.Context, tenant string) (blockIDs []uuid.UUID, compactedBlockIDs []uuid.UUID, err error) { |
| 73 | return r.nextReader.ListBlocks(ctx, tenant) |
| 74 | } |
| 75 | |
| 76 | // Find implements backend.Reader |
| 77 | func (r *readerWriter) Find(ctx context.Context, keypath backend.KeyPath, f backend.FindFunc) (err error) { |
nothing calls this directly
no test coverage detected