first commit probably lots of errors

This commit is contained in:
404invalid-user 2021-08-25 01:01:46 +01:00
commit ec94c2080b
99 changed files with 10227 additions and 0 deletions

9
src/bot/events/ready.js Normal file
View file

@ -0,0 +1,9 @@
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!");
}
}