10 lines
266 B
JavaScript
10 lines
266 B
JavaScript
|
const ImageCommand = require("../../classes/imageCommand.js");
|
||
|
|
||
|
class FlipCommand extends ImageCommand {
|
||
|
static description = "Flips an image";
|
||
|
|
||
|
static noImage = "you need to provide an image to flip!";
|
||
|
static command = "flip";
|
||
|
}
|
||
|
|
||
|
module.exports = FlipCommand;
|