wolfcountBot/index.js

15 lines
360 B
JavaScript
Raw Normal View History

2023-04-28 11:48:43 +00:00
require("dotenv").config();
const { Client, Collection } = require("discord.js");
const client = new Client({ intents: 34305 });
module.exports = client;
// Global Variables
client.commands = new Collection();
client.slashCommands = new Collection();
// Initializing the project
require("./handler")(client);
client.login(process.env.TOKEN);