11 lines
422 B
JavaScript
11 lines
422 B
JavaScript
const { REST } = require('@discordjs/rest');
|
|
const { Routes } = require('discord-api-types/v9');
|
|
//const { clientId, guildId, token } = require('./config.json');
|
|
|
|
const commands = [];
|
|
|
|
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); |