Some tweaks

This commit is contained in:
Essem 2022-06-25 12:45:42 -05:00
parent 5072c6ea10
commit 551c7294b5
No known key found for this signature in database
GPG key ID: 7D497397CC3A2A8C
5 changed files with 15 additions and 28 deletions

View file

@ -0,0 +1,11 @@
import ImageCommand from "../../classes/imageCommand.js";
class GIFCommand extends ImageCommand {
static description = "Converts an image into a GIF";
static aliases = ["gif", "getgif", "togif", "tgif", "gifify"];
static noImage = "You need to provide an image to convert to GIF!";
static command = "togif";
}
export default GIFCommand;

View file

@ -1,11 +0,0 @@
import ImageCommand from "../../classes/imageCommand.js";
class ToGIFCommand extends ImageCommand {
static description = "Turns an image into a gif";
static aliases = ["tgif", "gifify"];
static noImage = "You need to provide an image to turn into a GIF!";
static command = "togif";
}
export default ToGIFCommand;