thaldrin/src/events/ready.ts

14 lines
288 B
TypeScript
Raw Normal View History

2021-04-21 00:28:07 +00:00
import Logger from "../utils/logger"
2021-04-04 15:17:46 +00:00
import config from "../../config"
export = {
name: "ready",
2021-04-21 00:28:07 +00:00
// @ts-ignore
2021-04-04 15:17:46 +00:00
run: async (client: any) => {
2021-04-21 00:28:07 +00:00
Logger.info({
type: "event:ready",
message: `${config.variables.name} has started`
})
2021-04-04 15:17:46 +00:00
}
}