mirror of
https://github.com/arthur-pbty/gestion.git
synced 2026-06-03 23:36:35 +02:00
10 lines
284 B
JavaScript
10 lines
284 B
JavaScript
require('dotenv').config();
|
|
const { Client, IntentsBitField, Collection } = require("discord.js");
|
|
|
|
const client = new Client({intents: new IntentsBitField(3276799)});
|
|
|
|
client.on('ready', () => {
|
|
console.log(`Logged in as ${client.user.tag}!`);
|
|
});
|
|
|
|
client.login(process.env.TOKEN); |