DockerClient is a docker daemon client.
| 33 | |
| 34 | // DockerClient is a docker daemon client. |
| 35 | type DockerClient interface { |
| 36 | PullImage(ctx context.Context, repo, tag string) error |
| 37 | } |
| 38 | |
| 39 | type dockerClient struct { |
| 40 | version string |
nothing calls this directly
no outgoing calls
no test coverage detected