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