diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2022-11-22 19:02:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-22 19:02:03 +0100 |
commit | c49af0ce6d95d0529ddb06908c3f65867bae89ca (patch) | |
tree | f522e5e899c56c5794122392263ab556227a6a6d /src-tauri/src/main.rs | |
parent | 71072b86032d58408bf2a53cfddd6c0da45b3fe6 (diff) | |
download | FlightCore-c49af0ce6d95d0529ddb06908c3f65867bae89ca.tar.gz FlightCore-c49af0ce6d95d0529ddb06908c3f65867bae89ca.zip |
refactor: Start moving NS related logic to own mod (#63)
Diffstat (limited to 'src-tauri/src/main.rs')
-rw-r--r-- | src-tauri/src/main.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 1ddb4c69..b8b1ac3e 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -22,6 +22,9 @@ use mod_management::{ fc_download_mod_and_install, get_installed_mods_and_properties, set_mod_enabled_status, }; +mod northstar; +use northstar::get_northstar_version_number; + use tauri::Manager; use tauri_plugin_store::PluginBuilder; use tokio::time::sleep; |