Files
caitsith/src/config.rs
Wyatt J. Miller a98f2498a3 made bot in four hours
can run roll and random
2025-04-19 20:22:08 -04:00

12 lines
192 B
Rust

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