DBURL name change (#7)
All checks were successful
Release Tagging / release (push) Successful in 31s

Reviewed-on: #7
Co-authored-by: kdeng00 <kundeng00@pm.me>
Co-committed-by: kdeng00 <kundeng00@pm.me>
This commit is contained in:
2025-06-01 01:26:37 +00:00
committed by phoenix
parent 6c37c19a57
commit dbe4dc67cb
3 changed files with 4 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
pub async fn get_db_url() -> String {
dotenvy::dotenv().ok();
std::env::var(crate::keys::DBURL).expect(crate::keys::error::ERROR)
std::env::var(crate::keys::DB_URL).expect(crate::keys::error::DB_URL)
}
pub async fn get_secret_main_key() -> String {