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

6 lines
140 B
TypeScript

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