From 72d9bbe15220c21909dec8e30fb80729a24cec72 Mon Sep 17 00:00:00 2001 From: Nathan Perry Date: Tue, 6 Aug 2024 10:45:06 -0400 Subject: first pass convert to poise --- src/commands/help.rs | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 src/commands/help.rs (limited to 'src/commands/help.rs') 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, -) -> CommandResult { - help_commands::with_embeds(ctx, msg, args, opts, groups, owners).await?; - - Ok(()) -} -- cgit v1.3.1