node-event-bot/server/events/channelCreate.ts
2022-03-05 01:24:05 +01:00

6 lines
140 B
TypeScript

export const name = 'channelCreate'
export function execute(channel: any) {
console.log(`${JSON.stringify(channel)} has been Created.`)
}