-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
36 lines (29 loc) · 845 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
* User: efebagri
* Date/Time: 2/12/24, 2:55 AM
* File: index.js
*
* Modified: 1/9/24, 2:40 PM
*
* Copyright (c) 2024 Exbil (https://www.exbil.net/)
* All rights Reserved.
*/
// Importiere die benötigten Module
const { Client, Collection } = require("discord.js");
require('dotenv').config();
// Importiere den Updater
require('./events/updater');
// Erstelle einen Discord-Client
const client = new Client({
intents: 32767,
});
// Exportiere den Client
module.exports = client;
// Erstelle eine Sammlung für die Befehle und die Slash-Befehle
client.commands = new Collection();
client.slashCommands = new Collection();
// Importiere die Befehle und die Slash-Befehle
require("./handler/command_event")(client);
require("./handler/mongoose")(client)
// Melde den Client bei Discord an
client.login(process.env.TOKEN);