From cdae2ee11317fdab8052cb1228eedeb1c6b9b9c1 Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Thu, 12 Jun 2025 19:28:30 -0400 Subject: [PATCH] Changed const type --- src/keys.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/keys.rs b/src/keys.rs index 27cdbd5..cde5fab 100644 --- a/src/keys.rs +++ b/src/keys.rs @@ -13,7 +13,7 @@ pub const SECRET_KEY: &str = "SECRET_KEY"; pub const ROOT_DIRECTORY: &str = "ROOT_DIRECTORY"; // Environment key for icarus api url -pub const ICARUS_BASE_API_URL: &'static str = "ICARUS_BASE_API_URL"; +pub const ICARUS_BASE_API_URL: &str = "ICARUS_BASE_API_URL"; pub mod error { use const_format::concatcp;