(ctx context.Context, blobs []blob.Ref)
| 103 | } |
| 104 | |
| 105 | func (sto *remoteStorage) RemoveBlobs(ctx context.Context, blobs []blob.Ref) error { |
| 106 | return sto.client.RemoveBlobs(ctx, blobs) |
| 107 | } |
| 108 | |
| 109 | func (sto *remoteStorage) StatBlobs(ctx context.Context, blobs []blob.Ref, fn func(blob.SizedRef) error) error { |
| 110 | // TODO: cache the stat response's uploadUrl to save a future |
nothing calls this directly
no test coverage detected