A ClientOption configures a [Client]. In addition to any options grouped in the documentation below, remember that any [Option] is also a valid ClientOption.
| 26 | // In addition to any options grouped in the documentation below, remember that |
| 27 | // any [Option] is also a valid ClientOption. |
| 28 | type ClientOption interface { |
| 29 | applyToClient(*clientConfig) |
| 30 | } |
| 31 | |
| 32 | // WithAcceptCompression makes a compression algorithm available to a client. |
| 33 | // Clients ask servers to compress responses using any of the registered |
no outgoing calls
no test coverage detected