goose/services/ask-ai-bot/clients/discord.ts
BestCodes 849cc60fbc
feat: ask ai discord bot (#6842)
Signed-off-by: The-Best-Codes <bestcodes.official@gmail.com>
2026-02-02 22:11:28 +00:00

12 lines
304 B
TypeScript

import { Client, GatewayIntentBits } from "discord.js";
const client = new Client({
/* Sensible defaults, you can add or remove intents as needed. */
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent,
],
});
export default client;