mirror of
https://github.com/danbulant/discord.js
synced 2026-05-25 04:52:22 +00:00
14 lines
296 B
JavaScript
14 lines
296 B
JavaScript
const AbstractHandler = require('./AbstractHandler');
|
|
|
|
class MessageUpdateHandler extends AbstractHandler {
|
|
|
|
handle(packet) {
|
|
const data = packet.d;
|
|
const client = this.packetManager.client;
|
|
|
|
client.actions.MessageUpdate.handle(data);
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = MessageUpdateHandler;
|