thaldrin/DiscordEvents/ready.js
2019-11-10 16:09:00 -06:00

9 lines
201 B
JavaScript
Executable file

const { log } = require('../utils/index');
module.exports = {
name: 'ready',
run: async (client) => {
log.hasStarted();
client.user.setActivity(`'help | thaldr.in`, { type: `WATCHING` });
}
};