From a06f828c8a97f70a0a614a368c9a8536fe93ee0f Mon Sep 17 00:00:00 2001 From: phoenix Date: Sun, 28 Sep 2025 18:59:27 -0400 Subject: [PATCH] Code formatting --- src/keys.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/keys.rs b/src/keys.rs index 52defa6..1f0b1d6 100644 --- a/src/keys.rs +++ b/src/keys.rs @@ -44,9 +44,9 @@ pub mod error { pub const ICARUS_BASE_API_URL: &str = concatcp!(super::ICARUS_BASE_API_URL, " ", GENERAL_ERROR); pub const ICARUS_AUTH_BASE_API_URL: &str = concatcp!(super::ICARUS_AUTH_BASE_API_URL, " ", GENERAL_ERROR); -pub const APP_ENV: &str = concatcp!(super::APP_ENV, " ", GENERAL_ERROR); -pub const BACKEND_PORT: &str = concatcp!(super::BACKEND_PORT, " ", GENERAL_ERROR); -pub const FRONTEND_URL: &str = concatcp!(super::FRONTEND_URL, " ", GENERAL_ERROR); -pub const RUST_LOG: &str = concatcp!(super::RUST_LOG, " ", GENERAL_ERROR); -pub const ALLOWED_ORIGINS: &str = concatcp!(super::ALLOWED_ORIGINS, " ", GENERAL_ERROR); + pub const APP_ENV: &str = concatcp!(super::APP_ENV, " ", GENERAL_ERROR); + pub const BACKEND_PORT: &str = concatcp!(super::BACKEND_PORT, " ", GENERAL_ERROR); + pub const FRONTEND_URL: &str = concatcp!(super::FRONTEND_URL, " ", GENERAL_ERROR); + pub const RUST_LOG: &str = concatcp!(super::RUST_LOG, " ", GENERAL_ERROR); + pub const ALLOWED_ORIGINS: &str = concatcp!(super::ALLOWED_ORIGINS, " ", GENERAL_ERROR); }