ravenbotv14/index.js
Raven Scott cb8a312d93 updates
2022-11-01 21:08:09 +02:00

15 lines
363 B
JavaScript

require("dotenv").config();
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();
// Initializing the project
require("./handler")(client);
client.login(process.env.TOKENRVN);