First Commit
This commit is contained in:
14
rai.js
Normal file
14
rai.js
Normal 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);
|
Reference in New Issue
Block a user