thaldrin/src/events/ready.ts

9 lines
168 B
TypeScript

import config from "../../config"
export = {
name: "ready",
run: async (client: any) => {
console.log(`${config.variables.name} has started.`)
}
}