Sends a message to log channel when a user leave a thread
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
await lib.discord.channels['@0.2.0'].messages.create({
channel_id: `${process.env.LOG_CHANNEL_ID}`,
content: ``,
tts: false,
embed: {
type: 'rich',
title: 'Thread Left',
description: `Someone left a thread!`,
color: 0x00baff,
},
});