import { Client, GatewayIntentBits } from "discord.js"; import { Kitten } from "@purrkit/router"; import { KLogger } from "$/logger"; export const client = new Client({ intents: [ GatewayIntentBits.DirectMessages, GatewayIntentBits.GuildMessages, GatewayIntentBits.Guilds, GatewayIntentBits.MessageContent, ], }); export const kitten = new Kitten(client, { logger: new KLogger(), });