Blocks implements backend.Reader
(ctx context.Context, tenantID string)
| 233 | |
| 234 | // Blocks implements backend.Reader |
| 235 | func (r *reader) Blocks(ctx context.Context, tenantID string) ([]uuid.UUID, []uuid.UUID, error) { |
| 236 | return r.r.ListBlocks(ctx, tenantID) |
| 237 | } |
| 238 | |
| 239 | // BlockMeta implements backend.Reader |
| 240 | func (r *reader) BlockMeta(ctx context.Context, blockID uuid.UUID, tenantID string) (*BlockMeta, error) { |
nothing calls this directly
no test coverage detected