From 6632a081a846116e7ca1e4ab96b3592938ee2a20 Mon Sep 17 00:00:00 2001 From: GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> Date: Wed, 10 May 2023 22:51:10 +0200 Subject: refactor: Move code from `lib.rs` into `main.rs` (#330) Move remaining logic in one big move --- src-tauri/src/northstar/mod.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src-tauri/src/northstar/mod.rs') diff --git a/src-tauri/src/northstar/mod.rs b/src-tauri/src/northstar/mod.rs index a969d456..0fd4743e 100644 --- a/src-tauri/src/northstar/mod.rs +++ b/src-tauri/src/northstar/mod.rs @@ -1,9 +1,8 @@ //! This module deals with handling things around Northstar such as //! - getting version number -use crate::constants::CORE_MODS; +use crate::{check_origin_running, constants::CORE_MODS, get_host_os, GameInstall, InstallType}; use anyhow::anyhow; -use app::{check_origin_running, get_host_os, GameInstall, InstallType}; /// Check version number of a mod pub fn check_mod_version_number(path_to_mod_folder: &str) -> Result { -- cgit v1.2.3