aboutsummaryrefslogtreecommitdiff
path: root/src/commands/help.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/help.rs')
-rw-r--r--src/commands/help.rs31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/commands/help.rs b/src/commands/help.rs
deleted file mode 100644
index 0d84b2d..0000000
--- a/src/commands/help.rs
+++ /dev/null
@@ -1,31 +0,0 @@
-use std::collections::HashSet;
-
-use serenity::{
- framework::standard::{
- help_commands,
- macros::help,
- Args,
- CommandGroup,
- CommandResult,
- HelpOptions,
- },
- model::{
- channel::Message,
- id::UserId,
- },
- prelude::*,
-};
-
-#[help]
-pub async fn help(
- ctx: &Context,
- msg: &Message,
- args: Args,
- opts: &'static HelpOptions,
- groups: &[&'static CommandGroup],
- owners: HashSet<UserId>,
-) -> CommandResult {
- help_commands::with_embeds(ctx, msg, args, opts, groups, owners).await?;
-
- Ok(())
-}