JaBa/newEvents/ready.js

12 lines
174 B
JavaScript
Raw Normal View History

2024-12-06 21:22:38 +05:00
import Event from "../base/newEvent.js";
export default new Event(
{
name: "ready",
once: true,
},
client => {
console.log(client.user.tag + " is online!");
},
);