9 lines
201 B
JavaScript
Executable file
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` });
|
|
}
|
|
};
|