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