mrmBot-Matrix/commands/image-editing/crop.js

10 lines
273 B
JavaScript

const ImageCommand = require("../../classes/imageCommand.js");
class CropCommand extends ImageCommand {
static description = "Crops an image to 1:1";
static noImage = "You need to provide an image to crop!";
static command = "crop";
}
module.exports = CropCommand;