()
| 20 | } |
| 21 | |
| 22 | func GetHttpClient() *HttpClient { |
| 23 | c := *httpClient |
| 24 | return &c |
| 25 | } |
| 26 | |
| 27 | func (c *HttpClient) Get(url string) (resp *http.Response, err error) { |
| 28 | req, err := http.NewRequest(http.MethodGet, url, nil) |
no outgoing calls
no test coverage detected