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(()) }