feat: now compatible with kubernetes and docker :3

This commit is contained in:
2024-01-12 20:40:15 -05:00
parent 88b9b5b8c6
commit ed3a533e6d
15 changed files with 15 additions and 12 deletions

9
bot/events/ready.js Normal file
View File

@@ -0,0 +1,9 @@
const { Events } = require('discord.js');
module.exports = {
name: Events.ClientReady,
once: true,
execute(client) {
console.log(`Ready! Logged in as ${client.user.tag}`);
},
};