Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
185 B
1
Indexable
Never
const { Client, GatewayIntentBits } = require('discord.js');

const client = new Discord.Client({
  intents: [
    GatewayIntentBits.Guilds,
    GatewayIntentBits.GuildMessages,
  ]
})