all repos — discord-utils @ b2c00f4dd362361aace8e4afc9baf28c31a0cb18

src/discord/client.ts (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
import { SapphireClient } from "@sapphire/framework";

import { PinoSapphireLogger } from "@/logger";
import "@/commands";

export const client = new SapphireClient({
	intents: [],
	baseUserDirectory: null,
	allowedMentions: {
		parse: [],
		repliedUser: true,
	},
	logger: {
		instance: new PinoSapphireLogger({ level: "debug" }),
	},
});