mirror of
https://github.com/danbulant/discord.js
synced 2026-05-27 05:52:05 +00:00
* Cleanup Part 2: Electric Boogaloo (Reloaded) * Moar cleanup * Tweak NOT_A_PERMISSION error
11 lines
299 B
JavaScript
11 lines
299 B
JavaScript
const AbstractHandler = require('./AbstractHandler');
|
|
|
|
class GuildRoleDeleteHandler extends AbstractHandler {
|
|
handle(packet) {
|
|
const client = this.packetManager.client;
|
|
const data = packet.d;
|
|
client.actions.GuildRoleDelete.handle(data);
|
|
}
|
|
}
|
|
|
|
module.exports = GuildRoleDeleteHandler;
|