diff --git a/src/lib/client.ts b/src/lib/client.ts new file mode 100644 index 0000000..3fa9cbb --- /dev/null +++ b/src/lib/client.ts @@ -0,0 +1,13 @@ +import { + Client, + GatewayIntentBits, +} from 'discord.js'; + +export const client: Client = new Client({ + intents: [ + GatewayIntentBits.Guilds, + GatewayIntentBits.GuildMessages, + GatewayIntentBits.MessageContent, + GatewayIntentBits.GuildMembers, + ], +});