30 lines
775 B
JavaScript
30 lines
775 B
JavaScript
const { REST } = require('@discordjs/rest');
|
|
const { Routes } = require('discord-api-types/v9');
|
|
const { clientId, token } = require('./config/config.json');
|
|
const fs = require('node:fs');
|
|
|
|
const commands = [];
|
|
const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));
|
|
|
|
for (const file of commandFiles) {
|
|
const command = require(`./commands/${file}`);
|
|
commands.push(command.data.toJSON());
|
|
}
|
|
|
|
const rest = new REST({ version: '9' }).setToken(token);
|
|
|
|
(async () => {
|
|
try {
|
|
console.log('Started refreshing application (/) commands.');
|
|
|
|
await rest.put(
|
|
Routes.applicationCommands(clientId),
|
|
{ body: commands },
|
|
);
|
|
|
|
console.log('Successfully reloaded application (/) commands.');
|
|
|
|
} catch (error) {
|
|
console.error(error);
|
|
}
|
|
})(); |