aboutsummaryrefslogtreecommitdiff
path: root/src-tauri/src/northstar/install.rs
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2023-05-13 13:25:05 +0200
committerGitHub <noreply@github.com>2023-05-13 13:25:05 +0200
commit726b7466b34a936205a32098c56b7c723db34862 (patch)
tree0d0e5a725a605dd59ea450300ef28c34be98583c /src-tauri/src/northstar/install.rs
parentec0f0a92f8387f4c6d8b314536bc3acdcae56c66 (diff)
downloadFlightCore-726b7466b34a936205a32098c56b7c723db34862.tar.gz
FlightCore-726b7466b34a936205a32098c56b7c723db34862.zip
refactor: Move `extract` function to util submod (#354)
Diffstat (limited to 'src-tauri/src/northstar/install.rs')
-rw-r--r--src-tauri/src/northstar/install.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-tauri/src/northstar/install.rs b/src-tauri/src/northstar/install.rs
index 94029350..c01148a1 100644
--- a/src-tauri/src/northstar/install.rs
+++ b/src-tauri/src/northstar/install.rs
@@ -5,7 +5,7 @@ use std::{cell::RefCell, time::Instant};
use ts_rs::TS;
use crate::constants::TITANFALL2_STEAM_ID;
-use crate::{extract, GameInstall, InstallType};
+use crate::{util::extract, GameInstall, InstallType};
#[cfg(target_os = "windows")]
use crate::platform_specific::windows;