DiscordJS-v14-Template/events/ready.js

6 lines
128 B
JavaScript
Raw Normal View History

2022-07-22 22:09:13 +00:00
const client = require("../index");
client.on("ready", () => {
console.log(`${client.user.tag} is up and ready to go!`);
});