Fix fmt & clippy

This commit is contained in:
2023-03-10 00:31:03 -05:00
parent 12c63fd6c1
commit ecb0414f12

View File

@@ -13,11 +13,11 @@ impl EventHandler for Handler {
// private channels, and more.
//
// In this case, just print what the current user's username is.
async fn ready(&self, ctx: Context, ready: Ready) {
async fn ready(&self, _ctx: Context, ready: Ready) {
println!("{} is connected!", ready.user.name);
// for g_id in ctx.cache.guilds() {
// let g = ctx.cache.guild(g_id).expect("Unable to fetch guild");
// println!("Initializing {}...", g.name);
// }
// }
}
}