node-event-bot/server/events/ready.ts

5 lines
129 B
TypeScript
Raw Normal View History

2022-03-05 01:24:05 +01:00
export const name = 'ready'
export function execute(client: any) {
console.log(`${JSON.stringify(client)} has been created.`)
}