counting-bot / events /ready.js
pythonSnake5036
Remove logging
cf32a82
raw
history blame
153 Bytes
const { Events } = require('discord.js');
module.exports = {
name: Events.ClientReady,
once: true,
execute(client) {
console.log(`Ready!`);
},
};