use std::collections::HashSet; use serenity::{ model::{ channel::Message, id::UserId, }, framework::{ standard::{ macros::help, help_commands, Args, HelpOptions, CommandGroup, }, }, prelude::*, }; use serenity::framework::standard::CommandResult; #[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) }