19 lines
405 B
JavaScript
19 lines
405 B
JavaScript
|
const config = require("./config.json");
|
||
|
const { Client, Collection } = require("discord.js");
|
||
|
|
||
|
|
||
|
|
||
|
const client = new Client({
|
||
|
intents: 32767,
|
||
|
});
|
||
|
module.exports = client;
|
||
|
|
||
|
// Global Variables
|
||
|
client.commands = new Collection();
|
||
|
client.slashCommands = new Collection();
|
||
|
//client.config = require("./config.json");
|
||
|
|
||
|
// Initializing the project
|
||
|
require("./handler")(client);
|
||
|
|
||
|
client.login(config.token);
|