knightrider/src/bot/events/ready.js

9 lines
259 B
JavaScript
Raw Normal View History

2021-08-25 01:01:46 +01:00
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!");
}
}