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