Files
Apollo/index.ts
T
2024-10-26 20:33:18 +08:00

16 lines
405 B
TypeScript

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
]
})
);