flyer 3.0.0

HTTP framework for rust
Documentation
1
2
3
4
5
6
7
pub fn load(path: &str) {
    dotenv::from_filename(path).unwrap();
}

pub fn env(key: impl Into<String>) -> String {
    return std::env::var(key.into()).unwrap_or(String::new());
}