(remote_uri: String, tls_no_check: bool)
| 85 | |
| 86 | impl RaClient { |
| 87 | pub fn new(remote_uri: String, tls_no_check: bool) -> Result<Self> { |
| 88 | RaClientConfig::builder() |
| 89 | .tls_no_check(tls_no_check) |
| 90 | .remote_uri(remote_uri) |
| 91 | .build() |
| 92 | .into_client() |
| 93 | .context("failed to create client") |
| 94 | } |
| 95 | |
| 96 | pub fn new_mtls( |
| 97 | remote_uri: String, |
nothing calls this directly
no test coverage detected