10 lines
248 B
JavaScript
10 lines
248 B
JavaScript
const { Client, Intents } = require('discord.js');
|
|
const { token } = require('./config/config.json');
|
|
|
|
const client = new Client({ intents: [Intents.FLAGS.GUILDS] });
|
|
|
|
client.once('ready', () => {
|
|
console.log('Prêt !');
|
|
});
|
|
|
|
client.login(token);
|