Fix un-renamed module
This commit is contained in:
@@ -20,13 +20,13 @@ impl EventHandler for Handler {
|
|||||||
println!("{} is connected!", ready.user.name);
|
println!("{} is connected!", ready.user.name);
|
||||||
println!("Initialize guild voice popin state");
|
println!("Initialize guild voice popin state");
|
||||||
|
|
||||||
guildPopin::init(ctx).await;
|
guild_popin::init(ctx).await;
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn guild_create(&self, ctx: Context, guild: Guild, _new: bool) {
|
async fn guild_create(&self, ctx: Context, guild: Guild, _new: bool) {
|
||||||
println!("Guild joined: {}", guild.name);
|
println!("Guild joined: {}", guild.name);
|
||||||
|
|
||||||
guildPopin::addGuild(ctx, guild).await;
|
guild_popin::addGuild(ctx, guild).await;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user