mirror of
https://github.com/danbulant/discord.js
synced 2026-05-26 13:32:04 +00:00
11 lines
303 B
JavaScript
11 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;
|