feature: emote adding, listing and removing

This commit is contained in:
skkeye
2023-11-02 22:54:08 -04:00
commit ecb0d624ab
11 changed files with 1643 additions and 0 deletions

9
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}`);
},
};