knightrider/src/bot/events/ready.js
2021-08-25 01:01:46 +01:00

9 lines
No EOL
259 B
JavaScript

const { green } = require('chalk');
const conf = require('../../conf/conf.json');
module.exports = {
name: 'ready',
async exe(client) {
console.log(green('[bot]: ') + `${client.user.tag}` + " is online");
console.log("Ready!");
}
}