(state: State<'_, AppState>)
| 450 | |
| 451 | #[tauri::command] |
| 452 | pub async fn remote_close_workspace(state: State<'_, AppState>) -> Result<(), String> { |
| 453 | state.clear_remote_workspace().await; |
| 454 | log::info!("Closed remote workspace"); |
| 455 | Ok(()) |
| 456 | } |
| 457 | |
| 458 | #[tauri::command] |
| 459 | pub async fn remote_remove_workspace( |
nothing calls this directly
no test coverage detected