Files

12 lines
192 B
Rust
Raw Permalink Normal View History

2025-04-19 20:22:08 -04:00
use std::path::PathBuf;
pub struct Configuration {
env: Result<PathBuf, dotenvy::Error>,
}
pub fn config() -> Configuration {
Configuration {
env: dotenvy::dotenv(),
}
}