nyx/events/ready.js

5 lines
113 B
JavaScript
Raw Normal View History

const client = require("..");
2021-07-13 05:17:39 +02:00
client.on("ready", async () => {
2022-01-08 03:06:55 +01:00
console.log(`${client.user.username}`);
2021-06-12 12:53:51 +02:00
});