(ctx context.Context, b blob.Ref)
| 129 | } |
| 130 | |
| 131 | func (sto *remoteStorage) Fetch(ctx context.Context, b blob.Ref) (file io.ReadCloser, size uint32, err error) { |
| 132 | return sto.client.Fetch(ctx, b) |
| 133 | } |
| 134 | |
| 135 | func (sto *remoteStorage) MaxEnumerate() int { return 1000 } |
| 136 |