const magick = require("../utils/image.js"); exports.run = async (message) => { const image = await require("../utils/imagedetect.js")(message); if (image === undefined) return `${message.author.mention}, you need to provide an image to spin!`; const processMessage = await message.channel.createMessage(" Processing... This might take a while"); const { buffer } = await magick.run({ cmd: "globe", path: image.path, type: image.type }); if (processMessage.channel.messages.get(processMessage.id)) await processMessage.delete(); return { file: buffer, name: "globe.gif" }; }; exports.aliases = ["rotate", "sphere"]; exports.category = 5; exports.help = "Spins an image";