mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-12 09:33:32 +01:00
12 lines
303 B
JavaScript
12 lines
303 B
JavaScript
const AbstractHandler = require('./AbstractHandler');
|
|
|
|
class MessageReactionRemove extends AbstractHandler {
|
|
handle(packet) {
|
|
const client = this.packetManager.client;
|
|
const data = packet.d;
|
|
client.actions.MessageReactionRemove.handle(data);
|
|
}
|
|
}
|
|
|
|
module.exports = MessageReactionRemove;
|