(
server: &str,
name: &str,
tls: &TlsOptions,
)
| 283 | } |
| 284 | |
| 285 | pub(crate) async fn sandbox_connect_without_exec( |
| 286 | server: &str, |
| 287 | name: &str, |
| 288 | tls: &TlsOptions, |
| 289 | ) -> Result<()> { |
| 290 | sandbox_connect_with_mode(server, name, tls, false).await |
| 291 | } |
| 292 | |
| 293 | pub async fn sandbox_connect_editor( |
| 294 | server: &str, |
no test coverage detected