Creates a new channel using a command
//creates a new channel
//the command is !cc
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
await lib.discord.guilds['@0.1.3'].channels.create({
guild_id: `${context.params.event.guild_id}`,
name: `new channel`,
topic: `chat and talk`,
});