diff options
-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 { |