35 lines
1,017 B
TypeScript
Executable file
35 lines
1,017 B
TypeScript
Executable file
import { REST, Routes } from "discord.js";
|
|
import { config } from "dotenv";
|
|
config();
|
|
|
|
import { getCommands } from "./command/commands.js";
|
|
|
|
const commands = getCommands();
|
|
// Construct and prepare an instance of the REST module
|
|
const rest = new REST({ version: "10" }).setToken(process.env.DISCORD_TOKEN);
|
|
|
|
// and deploy your commands!
|
|
(async () => {
|
|
try {
|
|
console.log(`Started refreshing all application (/) commands.`);
|
|
|
|
// The put method is used to fully refresh all commands in the guild with the current set
|
|
await rest.put(
|
|
Routes.applicationGuildCommands(
|
|
process.env.DISCORD_CLIENT_ID,
|
|
process.env.DISCORD_TARGET_GUILD_ID
|
|
),
|
|
{
|
|
body: commands.map((command) => {
|
|
return command.data.toJSON();
|
|
}),
|
|
}
|
|
);
|
|
|
|
console.log(`Successfully reloaded all application (/) commands.`);
|
|
} catch (error) {
|
|
// And of course, make sure you catch and log any errors!
|
|
console.error(error);
|
|
}
|
|
})();
|