envs.rs
1 // Env variable to set the working directory of the client containing the config 2 // and db 3 pub const FM_CLIENT_DIR_ENV: &str = "FM_CLIENT_DIR"; 4 5 // Env variable to set the peer id of the guardian 6 pub const FM_OUR_ID_ENV: &str = "FM_OUR_ID"; 7 8 // Env variable to set the guardian password for authentication 9 pub const FM_PASSWORD_ENV: &str = "FM_PASSWORD";