RavenAI/raven_ai.js

15 lines
359 B
JavaScript
Raw Permalink Normal View History

2023-01-04 16:44:59 +00:00
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);