mirror of
https://github.com/block/goose.git
synced 2026-07-17 12:56:20 +02:00
849cc60fbc
Signed-off-by: The-Best-Codes <bestcodes.official@gmail.com>
13 lines
304 B
TypeScript
13 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;
|