diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-05-09 16:33:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-09 16:33:02 +0200 |
commit | 26ad6f3ce98e6d345b9f3290d0761e6152d83e07 (patch) | |
tree | e61c43dc135cf6a741fccd90dac470d990045201 /src-tauri/src/repair_and_verify | |
parent | 0ef2051cfb507f12755ca5c1ca68decfc67332af (diff) | |
download | FlightCore-26ad6f3ce98e6d345b9f3290d0761e6152d83e07.tar.gz FlightCore-26ad6f3ce98e6d345b9f3290d0761e6152d83e07.zip |
refactor: Move `get_enabled_mods` to `main.rs` (#333)
Part of #329
Diffstat (limited to 'src-tauri/src/repair_and_verify')
-rw-r--r-- | src-tauri/src/repair_and_verify/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src-tauri/src/repair_and_verify/mod.rs b/src-tauri/src/repair_and_verify/mod.rs index ecf5e1ec..09c59289 100644 --- a/src-tauri/src/repair_and_verify/mod.rs +++ b/src-tauri/src/repair_and_verify/mod.rs @@ -1,7 +1,8 @@ +use crate::get_enabled_mods; use crate::mod_management::{rebuild_enabled_mods_json, set_mod_enabled_status}; use anyhow::anyhow; /// Contains various functions to repair common issues and verifying installation -use app::{constants::CORE_MODS, get_enabled_mods, GameInstall}; +use app::{constants::CORE_MODS, GameInstall}; /// Verifies Titanfall2 game files #[tauri::command] |