HTTPClient sends an HTTP request and returns the response.
| 63 | |
| 64 | // HTTPClient sends an HTTP request and returns the response. |
| 65 | type HTTPClient interface { |
| 66 | Do(*http.Request) (*http.Response, error) |
| 67 | } |
| 68 | |
| 69 | // Client represents a Prometheus API client. |
| 70 | type Client struct { |
no outgoing calls
no test coverage detected