diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-05-11 19:04:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-11 19:04:37 +0200 |
commit | 57d9b827fde3bf587e3a0b146f0ec70ddb52f5aa (patch) | |
tree | 64eac80e198ea7ef8468928cbecf64dd6cdb9620 /src-tauri/src/northstar/mod.rs | |
parent | 563ef75103a12b08279466502e04413f1060f2fc (diff) | |
download | FlightCore-57d9b827fde3bf587e3a0b146f0ec70ddb52f5aa.tar.gz FlightCore-57d9b827fde3bf587e3a0b146f0ec70ddb52f5aa.zip |
refactor: Move NS install code into own module (#345)
* refactor: Move NS install code into own module
Moves the code in question out from main into its own module
* fix: Address clippy errors
Diffstat (limited to 'src-tauri/src/northstar/mod.rs')
-rw-r--r-- | src-tauri/src/northstar/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src-tauri/src/northstar/mod.rs b/src-tauri/src/northstar/mod.rs index 0fd4743e..c4dc9b82 100644 --- a/src-tauri/src/northstar/mod.rs +++ b/src-tauri/src/northstar/mod.rs @@ -1,5 +1,6 @@ //! This module deals with handling things around Northstar such as //! - getting version number +pub mod install; use crate::{check_origin_running, constants::CORE_MODS, get_host_os, GameInstall, InstallType}; use anyhow::anyhow; |