()
| 60 | private boolean pulling = false; |
| 61 | |
| 62 | public static OpenVPN getInstance() throws Exception { |
| 63 | if (instance == null) { |
| 64 | |
| 65 | instance = new OpenVPN(); |
| 66 | } |
| 67 | return instance; |
| 68 | } |
| 69 | |
| 70 | private DockerClient getClient() { |
| 71 | DockerClientConfig config = DefaultDockerClientConfig.createDefaultConfigBuilder().build(); |
no outgoing calls
no test coverage detected