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