1client.channelCreateCommand({2 name: "Channel Create",3 channel: "$channelId",4 code: `5 $log[$authorId just created a new channel called: $newChannel[name]]6 `7});
1module.exports = {2 name: "Channel Create",3 channel: "$channelId",4 type: "channelCreate",5 code: `6 $log[$authorId just created a new channel called: $newChannel[name]]7 `8};