WithReaderCert sets the path to a client certificate for TLS connections.
(cert string)
| 218 | |
| 219 | // WithReaderCert sets the path to a client certificate for TLS connections. |
| 220 | func WithReaderCert(cert string) ReaderOption { |
| 221 | return &readerCertOption{cert: cert} |
| 222 | } |
| 223 | |
| 224 | type readerCertOption struct { |
| 225 | cert string |
no outgoing calls
no test coverage detected
searching dependent graphs…