discord.js/src/client/actions/ChannelCreate.js
2016-08-19 22:35:03 +01:00

15 lines
268 B
JavaScript

const Action = require('./Action');
class ChannelCreateAction extends Action {
handle(data) {
const client = this.client;
const channel = client.dataManager.newChannel(data);
return {
channel,
};
}
}
module.exports = ChannelCreateAction;