use std::path::PathBuf; pub struct Configuration { env: Result, } pub fn config() -> Configuration { Configuration { env: dotenvy::dotenv(), } }