UNPKG
syxx.js
Version:
latest (11.9.96)
11.9.96
Selfbot module Discord
discord.gg
syxx.js
/
src
/
client
/
actions
/
ChannelCreate.js
12 lines
(9 loc)
•
255 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
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;