diff options
-rw-r--r-- | src-tauri/src/main.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index d3b58b67..df13cfb9 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -14,10 +14,9 @@ use std::ptr::null_mut; #[cfg(target_os = "windows")] use winapi::um::winuser::{MessageBoxW, MB_ICONERROR, MB_OK, MB_USERICON}; -use app::{ - constants::{APP_USER_AGENT, MASTER_SERVER_URL, REFRESH_DELAY, SERVER_BROWSER_ENDPOINT}, - *, -}; +use app::*; + +use crate::constants::{APP_USER_AGENT, MASTER_SERVER_URL, REFRESH_DELAY, SERVER_BROWSER_ENDPOINT}; mod github; use github::release_notes::check_is_flightcore_outdated; |