DockerClient defines the methods used from the Docker API
| 15 | |
| 16 | // DockerClient defines the methods used from the Docker API |
| 17 | type DockerClient interface { |
| 18 | ImageSave(ctx context.Context, imageIDs []string) (io.ReadCloser, error) |
| 19 | } |
| 20 | |
| 21 | // RealDockerClient implements DockerClient using the Docker API |
| 22 | type RealDockerClient struct { |
no outgoing calls
no test coverage detected