Using this command you can receive zero two wallpapers from the subreddit /r/ZeroTwoWallpapers/
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
const imageapi = require("imageapi.js");
let subreddits = [
"ZeroTwoWallpapers"
];
let subreddit = subreddits[Math.floor(Math.random()*(subreddits.length))];
let img = await imageapi(subreddit)
if (context.params.event.content.startsWith(`zero two`)) {
await lib.discord.channels['@0.0.6'].messages.create({
channel_id: `${context.params.event.channel_id}`,
content: `${img}`
});
}