BlobHandler represents a minimal blob storage backend, capable of serving blob contents.
| 51 | // BlobHandler represents a minimal blob storage backend, capable of serving |
| 52 | // blob contents. |
| 53 | type BlobHandler interface { |
| 54 | // Get gets the blob contents, or errNotFound if the blob wasn't found. |
| 55 | Get(ctx context.Context, repo string, h v1.Hash) (io.ReadCloser, error) |
| 56 | } |
| 57 | |
| 58 | // BlobStatHandler is an extension interface representing a blob storage |
| 59 | // backend that can serve metadata about blobs. |
no outgoing calls
no test coverage detected
searching dependent graphs…