HTTPClientOption defines an option that can be applied to the HTTP client.
| 509 | |
| 510 | // HTTPClientOption defines an option that can be applied to the HTTP client. |
| 511 | type HTTPClientOption interface { |
| 512 | applyToHTTPClientOptions(options *httpClientOptions) |
| 513 | } |
| 514 | |
| 515 | type httpClientOptionFunc func(options *httpClientOptions) |
| 516 |
no outgoing calls
no test coverage detected
searching dependent graphs…