This is an example to send the same response using multiple prefix commands in your Discord server using the OR operator "||".
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
if (context.params.event.content.startsWith('!command') || context.params.event.content.startsWith('!c')) {
await lib.discord.channels['@0.2.2'].messages.create({
channel_id: context.params.event.channel_id,
content: `Autocode is the best! โก`,
});
}