mairie360_api_lib 0.7.0

Lib for mairie360 APIs
Documentation
1
2
3
4
5
6
7
8
pub fn get_critical_env_var(name: &str) -> String {
    match std::env::var(name) {
        Ok(val) => val,
        Err(_) => {
            panic!("Critical environment variable '{}' is not set", name);
        }
    }
}