diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2022-11-25 10:09:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-25 10:09:04 +0100 |
commit | 345b617c765c29c44627f5657ed2056c731481c9 (patch) | |
tree | e6436b097da03800d278e564f0974a1f36724228 /src-tauri/src/main.rs | |
parent | f65a330bba626435510bc9f6afccd6d895416bc3 (diff) | |
download | FlightCore-345b617c765c29c44627f5657ed2056c731481c9.tar.gz FlightCore-345b617c765c29c44627f5657ed2056c731481c9.zip |
refactor: Move function to dedicated module (#67)
Getting log files is part of repair and troubleshooting
Diffstat (limited to 'src-tauri/src/main.rs')
-rw-r--r-- | src-tauri/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index b8b1ac3e..d775d978 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -15,7 +15,7 @@ mod github; use github::release_notes::{get_northstar_release_notes, check_is_flightcore_outdated}; mod repair_and_verify; -use repair_and_verify::{clean_up_download_folder, disable_all_but_core, verify_game_files}; +use repair_and_verify::{clean_up_download_folder, disable_all_but_core, verify_game_files, get_log_list}; mod mod_management; use mod_management::{ |