aboutsummaryrefslogtreecommitdiff
path: root/src-tauri/src/github/pull_requests.rs
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2023-05-10 22:51:10 +0200
committerGitHub <noreply@github.com>2023-05-10 22:51:10 +0200
commit6632a081a846116e7ca1e4ab96b3592938ee2a20 (patch)
treee473e632237e3273e14c3dcee3f4cf0b8c944c07 /src-tauri/src/github/pull_requests.rs
parent1635993f130f0f71d9a9bc002b2f74167ad5c974 (diff)
downloadFlightCore-6632a081a846116e7ca1e4ab96b3592938ee2a20.tar.gz
FlightCore-6632a081a846116e7ca1e4ab96b3592938ee2a20.zip
refactor: Move code from `lib.rs` into `main.rs` (#330)
Move remaining logic in one big move
Diffstat (limited to 'src-tauri/src/github/pull_requests.rs')
-rw-r--r--src-tauri/src/github/pull_requests.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src-tauri/src/github/pull_requests.rs b/src-tauri/src/github/pull_requests.rs
index 6c605424..e600e2e4 100644
--- a/src-tauri/src/github/pull_requests.rs
+++ b/src-tauri/src/github/pull_requests.rs
@@ -1,8 +1,8 @@
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 anyhow::anyhow;
-use app::check_is_valid_game_path;
-use app::constants::{APP_USER_AGENT, PULLS_API_ENDPOINT_LAUNCHER, PULLS_API_ENDPOINT_MODS};
use serde::{Deserialize, Serialize};
use std::fs::File;
use std::io;