thaldrin/src/events/ready.ts

15 lines
392 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"
2021-07-12 16:58:33 +00:00
// import prom from "../utils/init.prometheus"
2021-04-04 15:17:46 +00:00
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-07-12 16:58:33 +00:00
// prom.totalGuilds.set(client.guilds.cache.size)
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
}
}