First Commit

This commit is contained in:
Raven Scott
2023-03-25 19:09:44 +02:00
commit 0ec7419cb7
12 changed files with 416 additions and 0 deletions

5
events/ready.js Normal file
View File

@ -0,0 +1,5 @@
const client = require("../rai");
client.on("ready", () => {
console.log(`${client.user.tag} is up and ready to go!`);
});