| 37 | } |
| 38 | |
| 39 | type dockerClient struct { |
| 40 | version string |
| 41 | scheme string |
| 42 | addr string |
| 43 | basePath string |
| 44 | registry string |
| 45 | |
| 46 | client *http.Client |
| 47 | } |
| 48 | |
| 49 | // NewDockerClient creates a new DockerClient. |
| 50 | func NewDockerClient(config Config, registry string) (DockerClient, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected