import { Client, GatewayIntentBits } from "discord.js"; import { Bot } from "./structs/Bot"; export const bot = new Bot( new Client({ intents: [ GatewayIntentBits.Guilds, GatewayIntentBits.GuildVoiceStates, GatewayIntentBits.GuildMessages, GatewayIntentBits.GuildMessageReactions, GatewayIntentBits.MessageContent, GatewayIntentBits.DirectMessages ] }) );