import { Listener } from "@sapphire/framework";
export class ReadyListeners extends Listener {
constructor(context, options) {
super(context, {
...options,
once: true,
});
}
async run(client) {
console.log("Are you readyy ?");
}
}
import { Listener } from "@sapphire/framework";
export class ReadyListeners extends Listener {
constructor(context, options) {
super(context, {
...options,
once: true,
});
}
async run(client) {
console.log("Are you readyy ?");
}
}