diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-10-13 02:49:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-13 02:49:43 +0200 |
commit | 475ddbbede706624f6b332c06a035f2319a88f8e (patch) | |
tree | 2e15fb01cf7501844700ba7090ee80abff819a1a /src-tauri/src/northstar/mod.rs | |
parent | f515a3b702f781c0da438840071def1b37d2e1bc (diff) | |
download | FlightCore-475ddbbede706624f6b332c06a035f2319a88f8e.tar.gz FlightCore-475ddbbede706624f6b332c06a035f2319a88f8e.zip |
refactor: Move `get_host_os` to module (#618)
In an effort to clean up `main.rs`
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 284eac41..a6b895db 100644 --- a/src-tauri/src/northstar/mod.rs +++ b/src-tauri/src/northstar/mod.rs @@ -6,7 +6,8 @@ pub mod profile; use crate::util::check_ea_app_or_origin_running; use crate::{ constants::{CORE_MODS, TITANFALL2_STEAM_ID}, - get_host_os, GameInstall, InstallType, + platform_specific::get_host_os, + GameInstall, InstallType, }; use anyhow::anyhow; |