made bot in four hours
can run roll and random
This commit is contained in:
15
src/commands/about.rs
Normal file
15
src/commands/about.rs
Normal 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")
|
||||
}
|
Reference in New Issue
Block a user