const ImageCommand = require("../../classes/imageCommand.js"); class DeepfryCommand extends ImageCommand { static description = "Deep-fries an image"; static aliases = ["fry", "jpeg2", "nuke"]; static noImage = "You need to provide an image to fry!"; static command = "deepfry"; } module.exports = DeepfryCommand;