RemoveBlob removes the provided blob. An error is returned if the server failed to remove the blob. Removing a non-existent blob isn't an error.
(ctx context.Context, b blob.Ref)
| 89 | // RemoveBlob removes the provided blob. An error is returned if the server failed to remove |
| 90 | // the blob. Removing a non-existent blob isn't an error. |
| 91 | func (c *Client) RemoveBlob(ctx context.Context, b blob.Ref) error { |
| 92 | return c.RemoveBlobs(ctx, []blob.Ref{b}) |
| 93 | } |
| 94 | |
| 95 | func stringKeys(m map[blob.Ref]bool) (s []string) { |
| 96 | s = make([]string, 0, len(m)) |
nothing calls this directly
no test coverage detected