From fe467f60d99efa54f2ef64606e7d39b9b06d7294 Mon Sep 17 00:00:00 2001 From: Nathan Perry Date: Wed, 8 May 2024 10:28:04 -0400 Subject: update all deps --- src/commands/help.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/commands/help.rs') diff --git a/src/commands/help.rs b/src/commands/help.rs index 743a099..588cdf7 100644 --- a/src/commands/help.rs +++ b/src/commands/help.rs @@ -16,17 +16,17 @@ use serenity::{ }, prelude::*, }; +use serenity::framework::standard::CommandResult; -use crate::Result; #[help] -pub fn help( - ctx: &mut Context, +pub async fn help( + ctx: &Context, msg: &Message, args: Args, opts: &'static HelpOptions, groups: &[&'static CommandGroup], owners: HashSet, -) -> Result<()> { +) -> CommandResult { help_commands::with_embeds(ctx, msg, args, opts, groups, owners) } -- cgit v1.3.1