summaryrefslogtreecommitdiff
path: root/node_modules/discord.js/src/client/websocket/handlers/CHANNEL_CREATE.js
blob: d6d560d8e2cb92a21204cc8f68129173cf8c28ed (plain) (blame)
1
2
3
4
5
'use strict';

module.exports = (client, packet) => {
  client.actions.ChannelCreate.handle(packet.d);
};