FUWR6YS4KAOF5YYWQRERKRYTQHHZBTVTUIZL2Y6PNORCCT42BLNAC
YREDNL3G26AXAUNMTGBRZUMJM3MBZ2TGGJJ5JLIRWBSOTPSEWFHQC
RMDIMY3MH33WIWBBF53RHT26PALCFY6QUNNS735XGFTWPMZ2FTFAC
HU54Y66265W2VOTVERPHEFFKM3FDNZHL5FDTWBE4OX5YIELFNRLAC
6ZURHACLQ6F3QGSEGRENRUOZWBTRBOAXKHC372AGXXQ7FA7RX6QAC
standard::macros::{group, help},
standard::macros::{group, help, hook},
#[hook]async fn after(ctx: &Context, msg: &Message, command_name: &str, command_result: CommandResult) { println!("HERE"); if let Err(why) = command_result { eprintln!("Command '{}' returned error {:?}", command_name, why); let _ = msg.reply(&ctx, why).await; }}
#[hook]
async fn after(ctx: &Context, msg: &Message, command_name: &str, command_result: CommandResult) {
println!("HERE");
if let Err(why) = command_result {
eprintln!("Command '{}' returned error {:?}", command_name, why);
let _ = msg.reply(&ctx, why).await;
}
.after(after)