Simplifying code
This commit is contained in:
15
src/keys.rs
15
src/keys.rs
@@ -13,12 +13,15 @@ pub const SECRET_KEY: &str = "SECRET_KEY";
|
|||||||
pub const ROOT_DIRECTORY: &str = "ROOT_DIRECTORY";
|
pub const ROOT_DIRECTORY: &str = "ROOT_DIRECTORY";
|
||||||
|
|
||||||
// Environment key for icarus api url
|
// Environment key for icarus api url
|
||||||
pub const ICARUS_BASE_API_URL: &str = "ICARUS_BASE_API_URL";
|
pub const ICARUS_BASE_API_URL: &'static str = "ICARUS_BASE_API_URL";
|
||||||
|
|
||||||
pub mod error {
|
pub mod error {
|
||||||
pub const DB_URL: &str = "DATABASE_URL must be set in .env";
|
use const_format::concatcp;
|
||||||
pub const SECRET_KEY: &str = "SECRET_KEY must be set in environment file";
|
|
||||||
pub const SECRET_MAIN_KEY: &str = "SECRET_MAIN_KEY must not be set in environment file";
|
pub const GENERAL_ERROR: &str = "must not be set in enviornment file";
|
||||||
pub const ROOT_DIRECTORY: &str = "ROOT_DIRECTORY must not be set in environment file";
|
pub const DB_URL: &str = concatcp!(super::DB_URL, " ", GENERAL_ERROR);
|
||||||
pub const ICARUS_BASE_API_URL: &str = "ICARUS_BASE_API_URL must not be set in enviornment file";
|
pub const SECRET_KEY: &str = concatcp!(super::SECRET_KEY, " ", GENERAL_ERROR);
|
||||||
|
pub const SECRET_MAIN_KEY: &str = concatcp!(super::SECRET_MAIN_KEY, " ", GENERAL_ERROR);
|
||||||
|
pub const ROOT_DIRECTORY: &str = concatcp!(super::ROOT_DIRECTORY, " ", GENERAL_ERROR);
|
||||||
|
pub const ICARUS_BASE_API_URL: &str = concatcp!(super::ICARUS_BASE_API_URL, " ", GENERAL_ERROR);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user