WithCert sets the path to a client certificate for TLS connections.
(cert string)
| 322 | |
| 323 | // WithCert sets the path to a client certificate for TLS connections. |
| 324 | func WithCert(cert string) ExecutorOption { |
| 325 | return &certOption{cert: cert} |
| 326 | } |
| 327 | |
| 328 | type certOption struct { |
| 329 | cert string |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…