Create ready event

This commit is contained in:
baz 2023-11-17 23:47:17 +00:00
parent b4d3b59f63
commit d22588c4ee
1 changed files with 9 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}`);
},
};