thaldrin/DiscordEvents/ready.js

10 lines
211 B
JavaScript
Raw Normal View History

2019-10-14 11:19:41 +00:00
const { log } = require("../utils/index");
module.exports = {
name: "ready",
run: async client => {
log.hasStarted();
client.user.setActivity(`@${client.user.username} help to get started`);
}
};