diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2022-11-28 19:29:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-28 19:29:32 +0100 |
commit | 179474d2c2a09abaa8806b9da791121b6a5ca082 (patch) | |
tree | 5c311959e9ef20ee30b00eba6cc612911d9ff7d9 /src-tauri/src/repair_and_verify/mod.rs | |
parent | c52a78c2687a308187f6ee2fa3ff67486ac7d324 (diff) | |
download | FlightCore-179474d2c2a09abaa8806b9da791121b6a5ca082.tar.gz FlightCore-179474d2c2a09abaa8806b9da791121b6a5ca082.zip |
style: Auto-format all Rust code (#84)
Diffstat (limited to 'src-tauri/src/repair_and_verify/mod.rs')
-rw-r--r-- | src-tauri/src/repair_and_verify/mod.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src-tauri/src/repair_and_verify/mod.rs b/src-tauri/src/repair_and_verify/mod.rs index 47ec4cc9..3d5fdc04 100644 --- a/src-tauri/src/repair_and_verify/mod.rs +++ b/src-tauri/src/repair_and_verify/mod.rs @@ -1,8 +1,7 @@ -/// Contains various functions to repair common issues and verifying installation - -use app::{get_enabled_mods, GameInstall}; use crate::{mod_management::set_mod_enabled_status, northstar::CORE_MODS}; use anyhow::anyhow; +/// Contains various functions to repair common issues and verifying installation +use app::{get_enabled_mods, GameInstall}; /// Verifies Titanfall2 game files pub fn verify_game_files(game_install: GameInstall) -> Result<String, String> { |