From 1798e4f4a74f8647e8a739324fecddcbefe6b204 Mon Sep 17 00:00:00 2001 From: Jacob Sapoznikow Date: Thu, 5 Sep 2024 19:43:08 +0000 Subject: [PATCH] SHUT UP CLIPPY --- crates/query/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/query/src/lib.rs b/crates/query/src/lib.rs index 16049d6..51e3e95 100644 --- a/crates/query/src/lib.rs +++ b/crates/query/src/lib.rs @@ -3,7 +3,10 @@ use once_cell::sync::Lazy; #[macro_use] extern crate envcrypt; +#[allow(unused)] pub(crate) const CURSEFORGE_KEY: Lazy<&str> = Lazy::new(|| envc!("CURSEFORGE_KEY")); + +#[allow(unused)] pub(crate) const MODRINTH_KEY: Lazy> = Lazy::new(|| option_envc!("MODRINTH_KEY")); #[allow(unused)]