forked from snxraven/DiscordJS-v14-Template
6 lines
128 B
JavaScript
6 lines
128 B
JavaScript
|
const client = require("../index");
|
||
|
|
||
|
client.on("ready", () => {
|
||
|
console.log(`${client.user.tag} is up and ready to go!`);
|
||
|
});
|