use super::CmdResult; use crate::{logging, utils::logging::Type}; // TODO: 前端通过 emit 发送更新事件, tray 监听更新事件 /// 同步托盘和GUI的代理选择状态 #[tauri::command] pub async fn sync_tray_proxy_selection() -> CmdResult<()> { use crate::core::tray::Tray; match Tray::global().update_menu().await { Ok(_) => { logging!(info, Type::Cmd, "Tray proxy selection synced successfully"); Ok(()) } Err(e) => { logging!(error, Type::Cmd, "Failed to sync tray proxy selection: {e}"); Err(e.to_string()) } } }