wolbot/events/ready.mjs

9 lines
163 B
JavaScript
Raw Permalink Normal View History

2024-03-12 20:04:08 +01:00
export default {
name: "ready",
once: true,
async execute(client) {
console.log("Ready !");
client.user.setStatus("online");
},
};