April/index.mjs

45 lines
1.1 KiB
JavaScript
Raw Normal View History

2023-10-13 15:04:11 +02:00
import fs from "fs";
import { Client, GatewayIntentBits } from "discord.js";
import {
deploy_commands,
loadDatabase,
loadErrorCatcher,
} from "./functions.mjs";
import config from "./config.json" assert { type: "json" };
2023-09-13 21:12:45 +02:00
const { token } = config;
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
2023-10-13 15:04:11 +02:00
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildModeration,
GatewayIntentBits.GuildMessages,
],
});
loadDatabase(client);
loadErrorCatcher(client);
2023-10-13 15:04:11 +02:00
const eventFiles = fs
.readdirSync("./events")
.filter((file) => file.endsWith(".mjs"));
for (const file of eventFiles) {
2023-10-13 15:04:11 +02:00
const { default: event } = await import(`./events/${file}`);
if (event.once) {
client.once(event.name, (...args) => event.execute(...args, client));
} else {
client.on(event.name, (...args) => event.execute(...args, client));
}
console.log(`Loaded ${event.name} event !`);
}
deploy_commands(client, true);
/*
2023-04-24 20:45:36 +02:00
true will refresh slash commands (SET endpoint)
false will delete them (SET endpoint with an empty array)
null will not change slash commands
*/
client.login(token);