chore: cargo fmt

This commit is contained in:
2026-01-15 16:17:34 +08:00
parent 86d964943e
commit 41260c971a
8 changed files with 27 additions and 26 deletions

View File

@@ -1,9 +1,9 @@
use crate::{
lock_w,
services::client_config_manager::{
load_app_config, open_config_manager_window, save_app_config, AppConfig,
},
state::FDOLL,
lock_w,
};
#[tauri::command]
@@ -28,4 +28,4 @@ pub fn save_client_config(config: AppConfig) -> Result<(), String> {
#[tauri::command]
pub async fn open_client_config_manager() -> Result<(), String> {
open_config_manager_window().map_err(|e| e.to_string())
}
}