A fun command to use for your bot! The memes of this command are from Reddit
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
const imageapi = require("imageapi.js");
if (context.params.event.content.startsWith(`r/memes`)) {
let subreddits = [
"memes"
];
let subreddit = subreddits[Math.floor(Math.random()*(subreddits.length))];
let img = await imageapi(subreddit)
await lib.discord.channels['@0.0.6'].messages.create({
channel_id: `${context.params.event.channel_id}`,
content: `${img}`
});
}