Compare commits

..
Author SHA1 Message Date
phoenix bdaec1aa9d Adding envy module
Release Tagging / release (pull_request) Successful in 2m30s
Rust Build / Check (pull_request) Successful in 2m47s
Rust Build / Rustfmt (pull_request) Failing after 41s
Rust Build / Test Suite (pull_request) Successful in 1m2s
Rust Build / build (pull_request) Successful in 38s
Rust Build / Clippy (pull_request) Successful in 49s
2026-05-31 15:36:22 -04:00
phoenix 1246d64636 Updating dependencies 2026-05-31 15:35:39 -04:00
2 changed files with 2 additions and 2 deletions
+1 -2
View File
@@ -41,8 +41,7 @@ pub mod error {
pub const SERVICE_LOGIN: &str = concatcp!(super::SERVICE_PASSPHRASE, " ", GENERAL_ERROR);
pub const SECRET_KEY: &str = concatcp!(super::SECRET_KEY, " ", GENERAL_ERROR);
pub const ROOT_DIRECTORY: &str = concatcp!(super::ROOT_DIRECTORY, " ", GENERAL_ERROR);
pub const TEXTSENDER_BASE_API_URL: &str =
concatcp!(super::TEXTSENDER_BASE_API_URL, " ", GENERAL_ERROR);
pub const TEXTSENDER_BASE_API_URL: &str = concatcp!(super::TEXTSENDER_BASE_API_URL, " ", GENERAL_ERROR);
pub const TEXTSENDER_AUTH_BASE_API_URL: &str =
concatcp!(super::TEXTSENDER_AUTH_BASE_API_URL, " ", GENERAL_ERROR);
pub const APP_ENV: &str = concatcp!(super::APP_ENV, " ", GENERAL_ERROR);
+1
View File
@@ -37,3 +37,4 @@ pub fn init_delimiter(envvar: &mut EnvVar, delimiter: char) {
envvar.has_delimiter = has_delimiter;
}
}