14 lines
302 B
JavaScript
14 lines
302 B
JavaScript
|
const ImageCommand = require("../../classes/imageCommand.js");
|
||
|
|
||
|
class BlurCommand extends ImageCommand {
|
||
|
params = {
|
||
|
sharp: false
|
||
|
};
|
||
|
|
||
|
static description = "Blurs an image";
|
||
|
|
||
|
static noImage = "you need to provide an image to blur!";
|
||
|
static command = "blur";
|
||
|
}
|
||
|
|
||
|
module.exports = BlurCommand;
|