diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-02-11 18:33:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-11 18:33:15 +0100 |
commit | fc00447ccc3f63a54faca3d666701c19d9b8b8db (patch) | |
tree | 501b8f6691f096d3cb69a8a3a2cb5681fa5acebf /src-tauri/src/northstar | |
parent | fd4712accb319cd0084f7e97fea4d9d1299d8938 (diff) | |
download | FlightCore-fc00447ccc3f63a54faca3d666701c19d9b8b8db.tar.gz FlightCore-fc00447ccc3f63a54faca3d666701c19d9b8b8db.zip |
refactor: Move various consts to `constants.rs` (#162)
* refactor: Move list of core mods to consts source
Move the list of core Northstar mods to constants.rs
* fix: Add missing newline
* refactor: Move list of blacklisted mods to consts
source file
* refactor: Move list of TF2 Origin IDs to consts
source file
Diffstat (limited to 'src-tauri/src/northstar')
-rw-r--r-- | src-tauri/src/northstar/mod.rs | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src-tauri/src/northstar/mod.rs b/src-tauri/src/northstar/mod.rs index 8adfeec2..a043632c 100644 --- a/src-tauri/src/northstar/mod.rs +++ b/src-tauri/src/northstar/mod.rs @@ -1,13 +1,7 @@ //! This module deals with handling things around Northstar such as //! - getting version number -pub const CORE_MODS: [&str; 3] = [ - "Northstar.Client", - "Northstar.Custom", - "Northstar.CustomServers", -]; - -use crate::check_mod_version_number; +use crate::{check_mod_version_number, constants::CORE_MODS}; use anyhow::anyhow; /// Returns the current Northstar version number as a string |