-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.js
24 lines (19 loc) · 879 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const { Client, Collection, GatewayIntentBits } = require("discord.js");
const client = new Client({
allowedMentions: { parse: ['users', 'roles'] },
fetchAllMembers: false,
intents: [ GatewayIntentBits.Guilds, GatewayIntentBits.GuildMembers, GatewayIntentBits.GuildMessages, GatewayIntentBits.GuildMessageReactions, GatewayIntentBits.MessageContent ],
});
//SET COLLECTION
client.commandes = new Collection();
client.slash = new Collection();
client.aliases = new Collection();
cooldowns = new Collection();
//SET UTILS
client.logger = require('./src/utils/logger');
client.color = require('./src/utils/color.js');
//SET CONFIG
client.config = require('./config');
// LOAD THE 4 HANDLERS
["error", "command", "slashCommands", "event"].forEach(file => { require(`./src/utils/handlers/${file}`)(client) })
client.login(client.config.token);