RavenAI/events/ready.js

6 lines
131 B
JavaScript
Raw Normal View History

2023-01-04 16:44:59 +00:00
const client = require("../raven_ai");
client.on("ready", () => {
console.log(`${client.user.tag} is up and ready to go!`);
});