From d22588c4eede3738fc19ea81e663ed780c10ee94 Mon Sep 17 00:00:00 2001 From: baz Date: Fri, 17 Nov 2023 23:47:17 +0000 Subject: [PATCH] Create ready event --- events/ready.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 events/ready.js diff --git a/events/ready.js b/events/ready.js new file mode 100644 index 0000000..0f49430 --- /dev/null +++ b/events/ready.js @@ -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}`); + }, +}; \ No newline at end of file