(req *http.Request)
| 254 | // HTTPClient interface for making HTTP requests (allows mocking in tests) |
| 255 | type HTTPClient interface { |
| 256 | Do(req *http.Request) (*http.Response, error) |
| 257 | } |
| 258 | |
| 259 | // Client provides simplified telemetry functionality for docker agent |
no outgoing calls