diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-02-14 00:06:17 +0100 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-02-14 00:06:17 +0100 |
commit | 52a1f9da0b0bc71b8db09f344b175c2752f98f34 (patch) | |
tree | 06316cf95ee52d0704d4915756284cf91aed300b | |
parent | 2bdc60266adc1920a31488309657dd8db13b33f0 (diff) | |
download | FlightCore-52a1f9da0b0bc71b8db09f344b175c2752f98f34.tar.gz FlightCore-52a1f9da0b0bc71b8db09f344b175c2752f98f34.zip |
fix: Resolve variable import error
-rw-r--r-- | src-tauri/src/thunderstore/mod.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src-tauri/src/thunderstore/mod.rs b/src-tauri/src/thunderstore/mod.rs index c07c27ff..9151ba7c 100644 --- a/src-tauri/src/thunderstore/mod.rs +++ b/src-tauri/src/thunderstore/mod.rs @@ -1,11 +1,9 @@ //! For interacting with Thunderstore API -use app::constants::APP_USER_AGENT; +use app::constants::{APP_USER_AGENT, BLACKLISTED_MODS}; use serde::{Deserialize, Serialize}; use std::collections::HashSet; use ts_rs::TS; -use crate::mod_management::BLACKLISTED_MODS; - #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize, TS)] #[ts(export)] pub struct ThunderstoreMod { |