aboutsummaryrefslogtreecommitdiff
path: root/src-tauri/src/github
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2023-10-13 12:42:50 +0200
committerGitHub <noreply@github.com>2023-10-13 12:42:50 +0200
commit97d4773d5ee55cf6a9081475f2bc3011b23e1037 (patch)
treea22984a2b3bda1db4acd0e31971bcfb1ce06f7a9 /src-tauri/src/github
parent04c5ada00522f3058cd1825fcac466b207bc37f3 (diff)
downloadFlightCore-97d4773d5ee55cf6a9081475f2bc3011b23e1037.tar.gz
FlightCore-97d4773d5ee55cf6a9081475f2bc3011b23e1037.zip
refactor: Move repair/verify related funcs to mod (#622)
Moves functions related to game install path verification checks to dedicated module in an effort to clean up `main.rs`
Diffstat (limited to 'src-tauri/src/github')
-rw-r--r--src-tauri/src/github/pull_requests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-tauri/src/github/pull_requests.rs b/src-tauri/src/github/pull_requests.rs
index ccb45dff..91d8a5da 100644
--- a/src-tauri/src/github/pull_requests.rs
+++ b/src-tauri/src/github/pull_requests.rs
@@ -1,7 +1,7 @@
use crate::github::release_notes::fetch_github_releases_api;
-use crate::check_is_valid_game_path;
use crate::constants::{APP_USER_AGENT, PULLS_API_ENDPOINT_LAUNCHER, PULLS_API_ENDPOINT_MODS};
+use crate::repair_and_verify::check_is_valid_game_path;
use crate::GameInstall;
use anyhow::anyhow;
use serde::{Deserialize, Serialize};