NewClient returns a http.Client using the specified http.RoundTripper.
(rt http.RoundTripper)
| 597 | |
| 598 | // NewClient returns a http.Client using the specified http.RoundTripper. |
| 599 | func newClient(rt http.RoundTripper) *http.Client { |
| 600 | return &http.Client{Transport: rt} |
| 601 | } |
| 602 | |
| 603 | // NewClientFromConfig returns a new HTTP client configured for the |
| 604 | // given config.HTTPClientConfig and config.HTTPClientOption. |
no outgoing calls
no test coverage detected
searching dependent graphs…