Apollo Initial Files
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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
|
||||
]
|
||||
})
|
||||
);
|
||||
Reference in New Issue
Block a user