9 lines
192 B
JavaScript
9 lines
192 B
JavaScript
const { Events } = require('discord.js');
|
|
|
|
module.exports = {
|
|
name: Events.ClientReady,
|
|
once: true,
|
|
execute(client) {
|
|
console.log(`[STATUS]Ready! Logged in as ${client.user.tag}`);
|
|
},
|
|
}; |