38 lines
968 B
JavaScript
Executable File
38 lines
968 B
JavaScript
Executable File
// dotenv for handling environment variables
|
|
const dotenv = require('dotenv');
|
|
dotenv.config();
|
|
|
|
const { REST, Routes } = require('discord.js');
|
|
const botId = process.env.BOTID;
|
|
const token = process.env.TOKEN;
|
|
const fs = require('fs');
|
|
|
|
const commands = [];
|
|
const commandFiles = fs.readdirSync('./slash-commands').filter(file => file.endsWith('.js'));
|
|
|
|
for (const file of commandFiles) {
|
|
const command = require(`../slash-commands/${file}`);
|
|
if (command.data != undefined) {
|
|
commands.push(command.data.toJSON());
|
|
}
|
|
}
|
|
|
|
console.log(`Token: ...${token.slice(-5)} | Bot ID: ${botId}`);
|
|
|
|
const rest = new REST({ version: '10' }).setToken(token);
|
|
|
|
(async () => {
|
|
try {
|
|
console.log('Started refreshing global application (/) commands.');
|
|
|
|
await rest.put(
|
|
Routes.applicationCommands(botId),
|
|
{ body: commands },
|
|
);
|
|
|
|
console.log('Successfully reloaded global application (/) commands.');
|
|
process.exit();
|
|
} catch (error) {
|
|
console.error(error);
|
|
}
|
|
})(); |