()
| 82 | } |
| 83 | |
| 84 | func MustDockerClient() *Client { |
| 85 | dockerClient, err := GetDockerClient() |
| 86 | if err != nil { |
| 87 | exit.Error(err) |
| 88 | } |
| 89 | |
| 90 | return dockerClient |
| 91 | } |
| 92 | |
| 93 | func AWSAuthConfig(awsClient *aws.Client) (string, error) { |
| 94 | dockerClient, err := GetDockerClient() |
nothing calls this directly
no test coverage detected