更新代码风格

This commit is contained in:
Tlntin
2022-12-07 10:12:54 +08:00
parent 56c5ff8274
commit b111b1100f

View File

@@ -253,7 +253,10 @@ fn main() -> wry::Result<()> {
fn get_windows_config() -> (Option<String>,Option<WindowConfig>) {
let config_file = include_str!("../tauri.conf.json");
let config: Config = serde_json::from_str(config_file).expect("failed to parse windows config");
(config.package.product_name.clone(),config.tauri.windows.first().cloned())
(
config.package.product_name.clone(),
config.tauri.windows.first().cloned(),
)
}
#[cfg(target_os = "windows")]