From 52a1f9da0b0bc71b8db09f344b175c2752f98f34 Mon Sep 17 00:00:00 2001 From: GeckoEidechse Date: Tue, 14 Feb 2023 00:06:17 +0100 Subject: fix: Resolve variable import error --- src-tauri/src/thunderstore/mod.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src-tauri/src') 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 { -- cgit v1.2.3