9 lines
No EOL
259 B
JavaScript
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!");
|
|
}
|
|
} |