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

12 lines
332 B
JavaScript

import ImageCommand from "../../classes/imageCommand.js";
class WallCommand extends ImageCommand {
static category = "image-editing"
static description = "Creates a wall from an image";
static noImage = "You need to provide an image/GIF to make a wall!";
static command = "wall";
}
export default WallCommand;