lib/rest: Add Client.Do function to call http.Client.Do

This commit is contained in:
Nick Craig-Wood
2024-03-23 12:08:23 +00:00
parent 09cc8179cc
commit 48262849df
+5
View File
@@ -211,6 +211,11 @@ func ClientWithNoRedirects(c *http.Client) *http.Client {
return &clientCopy
}
// Do calls the internal http.Client.Do method
func (api *Client) Do(req *http.Request) (*http.Response, error) {
return api.c.Do(req)
}
// Call makes the call and returns the http.Response
//
// if err == nil then resp.Body will need to be closed unless