mirror of
https://github.com/gabrielkheisa/discord-active-developer-badge.git
synced 2024-11-22 19:41:55 +07:00
This commit is contained in:
parent
43e82ae4da
commit
526cabc654
5
app.js
5
app.js
@ -1,7 +1,7 @@
|
|||||||
const { createInterface } = require('node:readline');
|
const { createInterface } = require('node:readline');
|
||||||
const { execSync } = require('child_process');
|
const { execSync } = require('child_process');
|
||||||
const fetch = require('node-fetch');
|
const fetch = require('node-fetch');
|
||||||
const { Client, REST, Routes, GatewayIntentBits } = require('discord.js');
|
const { Client, Routes } = require('discord.js');
|
||||||
|
|
||||||
const client = new Client({ intents: [] });
|
const client = new Client({ intents: [] });
|
||||||
const rl = createInterface({ input: process.stdin, output: process.stdout });
|
const rl = createInterface({ input: process.stdin, output: process.stdout });
|
||||||
@ -30,8 +30,7 @@ const question = (q) => new Promise((resolve) => rl.question(q, resolve));
|
|||||||
throw err
|
throw err
|
||||||
});
|
});
|
||||||
|
|
||||||
const rest = new REST({ version: '10' }).setToken(token);
|
await client.rest.put(Routes.applicationCommands(client.user.id), { body: [
|
||||||
await rest.put(Routes.applicationCommands(client.user.id), { body: [
|
|
||||||
{
|
{
|
||||||
name: 'ping',
|
name: 'ping',
|
||||||
description: 'yes'
|
description: 'yes'
|
||||||
|
Loading…
Reference in New Issue
Block a user