rai-serge-discord-bot/rai.js
2023-03-25 19:09:44 +02:00

15 lines
359 B
JavaScript

require("dotenv").config();
const { Client, Collection } = require("discord.js");
const client = new Client({ intents: 4097 });
module.exports = client;
// Global Variables
client.commands = new Collection();
client.slashCommands = new Collection();
// Initializing the project
require("./handler")(client);
client.login(process.env.TOKEN);