import { REST, Routes } from 'discord.js'
import * as commandModules from '../commands/index.js'
import { config } from '../config.js'
const commands = []
for (const module of Object.values(commandModules)) {
commands.push(module.data)
}
const rest = new REST({ version: '10' }).setToken(config.DISCORD_TOKEN)
rest
.put(Routes.applicationCommands(config.CLIENT_ID), { body: commands })
.then(() => {
console.log('Successfully registered application commands')
process.exit(0)
})
.catch(console.error)
import { REST, Routes } from 'discord.js'
import * as commandModules from '../commands/index.js'
import { config } from '../config.js'
const commands = []
for (const module of Object.values(commandModules)) {
commands.push(module.data)
}
const rest = new REST({ version: '10' }).setToken(config.DISCORD_TOKEN)
rest
.put(Routes.applicationCommands(config.CLIENT_ID), { body: commands })
.then(() => {
console.log('Successfully registered application commands')
process.exit(0)
})
.catch(console.error)