import { SapphireClient } from '@sapphire/framework';
import { GatewayIntentBits } from 'discord.js';
(async () => await (new SapphireClient({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent,
],
defaultPrefix: '?',
caseInsensitiveCommands: true,
loadMessageCommandListeners: true,
})).login('TOKEN'))();
import { SapphireClient } from '@sapphire/framework';
import { GatewayIntentBits } from 'discord.js';
(async () => await (new SapphireClient({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent,
],
defaultPrefix: '?',
caseInsensitiveCommands: true,
loadMessageCommandListeners: true,
})).login('TOKEN'))();