SetCerts is a global wrapper methods which delegated to the default client's Client.SetCerts.
(certs ...tls.Certificate)
| 84 | // SetCerts is a global wrapper methods which delegated |
| 85 | // to the default client's Client.SetCerts. |
| 86 | func SetCerts(certs ...tls.Certificate) *Client { |
| 87 | return defaultClient.SetCerts(certs...) |
| 88 | } |
| 89 | |
| 90 | // SetRootCertFromString is a global wrapper methods which delegated |
| 91 | // to the default client's Client.SetRootCertFromString. |
nothing calls this directly
no test coverage detected
searching dependent graphs…