index: commit initial file

This commit is contained in:
Seaswimmer 2023-08-21 11:23:32 -04:00
parent d2bf2a1f32
commit d175a967a8
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

15
index.js Normal file
View file

@ -0,0 +1,15 @@
// Require the necessary discord.js classes
const { Client, Events, GatewayIntentBits } = require('discord.js');
const { token } = require('./config.json');
// Create a new client instance
const client = new Client({ intents: [GatewayIntentBits.Guilds] });
// When the client is ready, run this code (only once)
// We use 'c' for the event parameter to keep it separate from the already defined 'client'
client.once(Events.ClientReady, c => {
console.log(`Ready! Logged in as ${c.user.tag}`);
});
// Log in to Discord with your client's token
client.login(token);