Add files via upload

This commit is contained in:
UltraLion
2022-11-05 23:03:54 +01:00
committed by GitHub
parent fdf41365f1
commit 7e067fc776
5 changed files with 121 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
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.TOKEN);