Setup elysia eden in bot

This commit is contained in:
Dominic Ferrando
2026-08-15 16:37:35 -04:00
parent 1b886e4744
commit a4e7060538
4 changed files with 47 additions and 4 deletions
+3 -1
View File
@@ -1,7 +1,9 @@
import { Client, Events, GatewayIntentBits } from 'discord.js';
import { CommandService } from './services/cmd/service';
const client = new Client({ intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMembers, GatewayIntentBits.GuildMessages, GatewayIntentBits.MessageContent] });
const client = new Client({
intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMembers, GatewayIntentBits.GuildMessages, GatewayIntentBits.MessageContent]
});
// SERVICES
// -----------------------