11 lines
360 B
JavaScript
11 lines
360 B
JavaScript
import { Client, GatewayIntentBits } from 'discord.js';
|
|
//import { deployActiveCommands } from '../discordBot/modules/deployCommands.mjs'
|
|
|
|
import dotenv from 'dotenv';
|
|
dotenv.config()
|
|
|
|
export const serverClient = new Client({ intents: [GatewayIntentBits.Guilds] });
|
|
|
|
serverClient.on('ready', () => {
|
|
console.log(`Logged in as ${serverClient.user.tag}!`);
|
|
}); |