mirror of
https://github.com/JonnyBro/JaBa.git
synced 2025-01-04 09:43:03 +05:00
12 lines
174 B
JavaScript
12 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!");
|
||
|
},
|
||
|
);
|