16 lines
405 B
TypeScript
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
|
|
]
|
|
})
|
|
);
|