mirror of
https://github.com/Alee14/DLAP.git
synced 2025-01-23 03:11:55 -05:00
18 lines
676 B
JavaScript
18 lines
676 B
JavaScript
const fs = require('node:fs');
|
|
const { REST } = require('@discordjs/rest');
|
|
const { Routes } = require('discord-api-types/v9');
|
|
const config = require('./config.json');
|
|
|
|
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(config.token);
|
|
|
|
rest.put(Routes.applicationGuildCommands(config.clientID, config.guildID), { body: commands })
|
|
.then(() => console.log('Successfully registered application commands.'))
|
|
.catch(console.error);
|