Removing comment

This commit is contained in:
2025-10-10 14:19:48 -04:00
parent c06d546ae7
commit 218b0f60a9

View File

@@ -99,7 +99,6 @@ pub async fn get_allowed_origins() -> crate::EnvVar {
/// Get environment not specified in the code /// Get environment not specified in the code
pub async fn get_env(environment: &str) -> crate::EnvVar { pub async fn get_env(environment: &str) -> crate::EnvVar {
dotenvy::dotenv().ok(); dotenvy::dotenv().ok();
// let key = crate::keys::
let my_error = format!("{environment} {}", crate::keys::error::GENERAL_ERROR); let my_error = format!("{environment} {}", crate::keys::error::GENERAL_ERROR);
let value = std::env::var(environment).expect(&my_error); let value = std::env::var(environment).expect(&my_error);