fix many things

This commit is contained in:
Julian Freeman
2026-03-02 19:42:20 -04:00
parent 6f1d625c00
commit a255cf9be0
3 changed files with 425 additions and 138 deletions

View File

@@ -9,7 +9,7 @@ async fn start_fast_scan() -> cleaner::FastScanResult {
}
#[tauri::command]
async fn start_fast_clean(is_simulation: bool) -> Result<String, String> {
async fn start_fast_clean(is_simulation: bool) -> Result<cleaner::CleanResult, String> {
cleaner::run_fast_clean(is_simulation).await
}