-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy-commands.js
41 lines (30 loc) · 1002 Bytes
/
deploy-commands.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
const { REST, Routes} = require("discord.js")
const dotenv = require('dotenv');
dotenv.config();
const {TOKEN, CLIENT_ID, GUILD_ID} = process.env;
const fs = require("node:fs");
const path = require("node:path");
const commandsPath = path.join(__dirname, "slash_commands")
const commandsFiles = fs.readdirSync(commandsPath).filter(file => file.endsWith(".js"));
const commands = [];
for (const file of commandsFiles){
const command = require(`./slash_commands/${file}`);
commands.push(command.data.toJSON());
}
// instância rest
const rest = new REST({versin: "10"}).setToken(TOKEN);
//fazendo o deploy
(async () => {
try {
console.log(`Resetando ${commands.length} comandos...`);
//put
const data = await rest.put(
Routes.applicationGuildCommands(CLIENT_ID, GUILD_ID),
{body: commands}
)
console.log("comandos registrados com sucesso!");
}
catch (error){
console.error(error);
}
})();