refactoring of app.rs and relevant flow files

This commit is contained in:
2026-01-25 23:10:09 +08:00
parent d1ef0a010f
commit 76943f3362
4 changed files with 49 additions and 25 deletions

View File

@@ -18,7 +18,7 @@ pub fn start_auth_flow() -> Result<(), String> {
// Close welcome window if it's still open
crate::services::welcome::close_welcome_window();
tauri::async_runtime::spawn(async {
crate::app::bootstrap().await;
crate::startup::bootstrap().await;
});
})
.map_err(|e| e.to_string())