© 2026 Hedgehog Software, LLC
listeners
src/ ├── index.ts └── listeners └── ready.ts
import { Events, Listener } from '@sapphire/framework'; export class ReadyListener extends Listener<typeof Events.Debug> { public override run() { console.log('ready'); } }
import { SapphireClient } from '@sapphire/framework'; const client = new SapphireClient({ intents: ['Guilds'] }); client.login('...');