WithReaderCertKey sets the path to a client certificate key for TLS connections.
(certKey string)
| 231 | |
| 232 | // WithReaderCertKey sets the path to a client certificate key for TLS connections. |
| 233 | func WithReaderCertKey(certKey string) ReaderOption { |
| 234 | return &readerCertKeyOption{certKey: certKey} |
| 235 | } |
| 236 | |
| 237 | type readerCertKeyOption struct { |
| 238 | certKey string |
no outgoing calls
no test coverage detected
searching dependent graphs…