(ctx context.Context, sys *types.SystemContext)
| 74 | } |
| 75 | |
| 76 | func (b *BlobCache) DeleteImage(ctx context.Context, sys *types.SystemContext) error { |
| 77 | return b.reference.DeleteImage(ctx, sys) |
| 78 | } |
| 79 | |
| 80 | // blobPath returns the path appropriate for storing a blob with digest. |
| 81 | func (b *BlobCache) blobPath(digest digest.Digest, isConfig bool) (string, error) { |
nothing calls this directly
no test coverage detected