(images []string, retries int)
| 19 | // Client is the interface for interacting with images. |
| 20 | type Client interface { |
| 21 | PullImages(images []string, retries int) []error |
| 22 | PushImages(images []TagPair, retries int) []error |
| 23 | DownloadImages(images []string, version string) (string, error) |
| 24 | DeleteImages(images []string, retries int) []error |
no outgoing calls
no test coverage detected