diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-05-13 14:36:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-13 14:36:35 +0200 |
commit | 3ee065407d57c424248457b567e1b3399002b443 (patch) | |
tree | 446b388c330386bb23361846ffd245ac1fc2f4ee /src-tauri/src/northstar/mod.rs | |
parent | 726b7466b34a936205a32098c56b7c723db34862 (diff) | |
download | FlightCore-3ee065407d57c424248457b567e1b3399002b443.tar.gz FlightCore-3ee065407d57c424248457b567e1b3399002b443.zip |
refactor: Move Origin/NS running check to util mod (#355)
Diffstat (limited to 'src-tauri/src/northstar/mod.rs')
-rw-r--r-- | src-tauri/src/northstar/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src-tauri/src/northstar/mod.rs b/src-tauri/src/northstar/mod.rs index c4dc9b82..f210faab 100644 --- a/src-tauri/src/northstar/mod.rs +++ b/src-tauri/src/northstar/mod.rs @@ -2,7 +2,8 @@ //! - getting version number pub mod install; -use crate::{check_origin_running, constants::CORE_MODS, get_host_os, GameInstall, InstallType}; +use crate::util::check_origin_running; +use crate::{constants::CORE_MODS, get_host_os, GameInstall, InstallType}; use anyhow::anyhow; /// Check version number of a mod |