mirror of
https://github.com/FranP-code/shopping-discord-bot.git
synced 2025-10-13 00:22:44 +00:00
12 lines
318 B
JavaScript
12 lines
318 B
JavaScript
const { GatewayIntentBits } = require('discord.js');
|
|
const Discord = require('discord.js');
|
|
require('dotenv').config();
|
|
|
|
const client = new Discord.Client({ intents: [GatewayIntentBits.Guilds] });
|
|
|
|
client.on('ready', () => {
|
|
console.log('working');
|
|
console.log(client.user);
|
|
});
|
|
|
|
client.login(process.env.BOT_TOKEN); |