(ctx context.Context, w io.Writer, digest string)
| 43 | |
| 44 | type Downloader interface { |
| 45 | Download(ctx context.Context, w io.Writer, digest string) error |
| 46 | // Whether the CAS is ready to accept downloads |
| 47 | IsReady(ctx context.Context) (bool, error) |
| 48 | } |
no outgoing calls