mirror of
https://github.com/JonnyBro/JaBa.git
synced 2025-01-01 16:23:02 +05:00
11 lines
174 B
JavaScript
11 lines
174 B
JavaScript
import Event from "../base/newEvent.js";
|
|
|
|
export default new Event(
|
|
{
|
|
name: "ready",
|
|
once: true,
|
|
},
|
|
client => {
|
|
console.log(client.user.tag + " is online!");
|
|
},
|
|
);
|