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

15
src/commands/about.rs Normal file
View File

@@ -0,0 +1,15 @@
use serenity::builder::CreateCommand;
use serenity::model::application::ResolvedOption;
pub async fn run(options: &[ResolvedOption<'_>]) -> String {
r#"
A Discord bot that rolls limitless dice, randomly!
Designed, developed, and maintained by Arnkell Warner of Maduin
Copyright 2025, all rights reserved
"#
.to_string()
}
pub fn register() -> CreateCommand {
CreateCommand::new("about").description("Get information about this bot")
}