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

6 lines
140 B
TypeScript
Raw Normal View History

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