mirror of
https://github.com/block/goose.git
synced 2026-04-28 03:29:36 +00:00
12 lines
304 B
TypeScript
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;
|