From 6632a081a846116e7ca1e4ab96b3592938ee2a20 Mon Sep 17 00:00:00 2001 From: GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> Date: Wed, 10 May 2023 22:51:10 +0200 Subject: refactor: Move code from `lib.rs` into `main.rs` (#330) Move remaining logic in one big move --- src-tauri/src/github/pull_requests.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src-tauri/src/github') 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; -- cgit v1.2.3