WithCertKey sets the path to a client certificate key for TLS connections.
(certKey string)
| 335 | |
| 336 | // WithCertKey sets the path to a client certificate key for TLS connections. |
| 337 | func WithCertKey(certKey string) ExecutorOption { |
| 338 | return &certKeyOption{certKey: certKey} |
| 339 | } |
| 340 | |
| 341 | type certKeyOption struct { |
| 342 | certKey string |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…