| 17 | ) |
| 18 | |
| 19 | type DockerRuntime struct { |
| 20 | Client *client.Client |
| 21 | } |
| 22 | |
| 23 | func NewDockerRuntime() (*DockerRuntime, error) { |
| 24 | opts := []client.Opt{client.FromEnv, client.WithAPIVersionNegotiation()} |
nothing calls this directly
no outgoing calls
no test coverage detected