WithReaderCACert sets the path to a custom CA certificate for TLS connections.
(caCert string)
| 205 | |
| 206 | // WithReaderCACert sets the path to a custom CA certificate for TLS connections. |
| 207 | func WithReaderCACert(caCert string) ReaderOption { |
| 208 | return &readerCACertOption{caCert: caCert} |
| 209 | } |
| 210 | |
| 211 | type readerCACertOption struct { |
| 212 | caCert string |
no outgoing calls
no test coverage detected
searching dependent graphs…