diff --git a/src/envy/keys.rs b/src/envy/keys.rs index 9b187bd..24e84a9 100644 --- a/src/envy/keys.rs +++ b/src/envy/keys.rs @@ -41,7 +41,8 @@ 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); diff --git a/src/envy/mod.rs b/src/envy/mod.rs index 20cc9b7..d3d1bde 100644 --- a/src/envy/mod.rs +++ b/src/envy/mod.rs @@ -37,4 +37,3 @@ pub fn init_delimiter(envvar: &mut EnvVar, delimiter: char) { envvar.has_delimiter = has_delimiter; } } -