mrmBot-Matrix/commands/image-editing/wall.js
2023-03-15 10:09:09 -04:00

11 lines
295 B
JavaScript

import ImageCommand from "../../classes/imageCommand.js";
class WallCommand extends ImageCommand {
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;