19 lines
643 B
JavaScript
19 lines
643 B
JavaScript
const fs = require('node:fs');
|
|
const { REST } = require('@discordjs/rest');
|
|
const { Routes } = require('discord-api-types/v9');
|
|
const { clientId, guildId, token } = require('./config.json');
|
|
|
|
const commands = [];
|
|
const commandFiles = fs.readdirSync('./src/commands');
|
|
|
|
for (const file of commandFiles) {
|
|
const command = require(`./src/commands/${file}`);
|
|
commands.push(command.data.toJSON());
|
|
}
|
|
|
|
const rest = new REST({ version: '9' }).setToken(token);
|
|
|
|
rest
|
|
.put(Routes.applicationGuildCommands(clientId, guildId), { body: commands })
|
|
.then(() => console.log('Successfully registered application commands.'))
|
|
.catch(console.error);
|