SetProxy is a global wrapper methods which delegated to the default client's Client.SetProxy.
(proxy func(*http.Request) (*url.URL, error))
| 534 | // SetProxy is a global wrapper methods which delegated |
| 535 | // to the default client's Client.SetProxy. |
| 536 | func SetProxy(proxy func(*http.Request) (*url.URL, error)) *Client { |
| 537 | return defaultClient.SetProxy(proxy) |
| 538 | } |
| 539 | |
| 540 | // OnBeforeRequest is a global wrapper methods which delegated |
| 541 | // to the default client's Client.OnBeforeRequest. |
nothing calls this directly
no test coverage detected
searching dependent graphs…