(ctx context.Context, blobs []blob.Ref)
| 144 | } |
| 145 | |
| 146 | func (ns *nsto) RemoveBlobs(ctx context.Context, blobs []blob.Ref) error { |
| 147 | for _, br := range blobs { |
| 148 | if err := ns.inventory.Delete(br.String()); err != nil { |
| 149 | return err |
| 150 | } |
| 151 | } |
| 152 | return nil |
| 153 | } |
| 154 | |
| 155 | func (ns *nsto) StatBlobs(ctx context.Context, blobs []blob.Ref, fn func(blob.SizedRef) error) error { |
| 156 | for _, br := range blobs { |