UNPKG

selfbot-discord

Version:
12 lines (9 loc) • 255 B
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;