Client is the interface for interacting with images.
| 18 | |
| 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 |
| 25 | RunImage(image string, entrypoint string, env map[string]string, args ...string) ([]string, error) |
| 26 | InspectImages(images []string) []error |
| 27 | } |
no outgoing calls
no test coverage detected