Rust service refactor: app data, session windows & client config pt 2

This commit is contained in:
2026-03-10 15:46:49 +08:00
parent 341dd48132
commit 858858ab48
23 changed files with 308 additions and 347 deletions

View File

@@ -7,16 +7,14 @@ use crate::{
models::health::HealthError,
remotes::health::HealthRemote,
services::{
close_all_windows,
app_data::{clear_app_data, init_app_data_scoped, AppDataRefreshScope},
health_manager::open_health_manager_window,
health_monitor::{start_health_monitor, stop_health_monitor},
scene::open_scene_window,
session_windows::close_all_windows,
ws::client::{clear_ws_client, establish_websocket_connection},
},
state::{
auth::{start_background_token_refresh, stop_background_token_refresh},
clear_app_data, init_app_data_scoped, AppDataRefreshScope,
},
state::auth::{start_background_token_refresh, stop_background_token_refresh},
system_tray::update_system_tray,
};