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

This commit is contained in:
Nick Craig-Wood 2024-03-04 15:23:46 +00:00
parent 09cc8179cc
commit 48262849df
1 changed files with 5 additions and 0 deletions

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