Anyhow know why this not working? ```ts import { Listener } from "@sapphire/framework"; import type

Anyhow know why this not working?
import { Listener } from "@sapphire/framework";
import type { Client } from "discord.js";

export class ReadyListener extends Listener {
    public constructor(context: Listener.Context, options: Listener.Options) {
        super(context, {
            ...options,
            event: 'ready',
            once: true
        });
    }

    public async run(client: Client) {
        this.container.logger.info(`Logged in as ${client.user!.tag}`);
     }
}
unknown.png
Was this page helpful?