made bot in four hours

can run roll and random
This commit is contained in:
2025-04-19 20:22:08 -04:00
commit a98f2498a3
20 changed files with 3394 additions and 0 deletions

11
src/config.rs Normal file
View File

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