First Commit

This commit is contained in:
Raven Scott
2023-03-25 19:09:44 +02:00
commit 0ec7419cb7
12 changed files with 416 additions and 0 deletions

14
rai.js Normal file
View File

@ -0,0 +1,14 @@
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);