UNPKG
selfbot-discord
Version:
latest (1.5.5)
1.5.5
1.5.4
1.5.3
1.5.2
1.5.1
1.5.0
Module discord.js v11 modifié
github.com/discordjs/discord.js
discordjs/discord.js
selfbot-discord
/
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;