(ctx context.Context, br blob.Ref)
| 357 | } |
| 358 | |
| 359 | func (s *storage) Fetch(ctx context.Context, br blob.Ref) (io.ReadCloser, uint32, error) { |
| 360 | return s.fetch(br, 0, -1) |
| 361 | } |
| 362 | |
| 363 | func (s *storage) SubFetch(ctx context.Context, br blob.Ref, offset, length int64) (io.ReadCloser, error) { |
| 364 | if offset < 0 || length < 0 { |