mrmBot-Matrix/commands/image-editing/globe.js

17 lines
385 B
JavaScript

import ImageCommand from "../../classes/imageCommand.js";
class GlobeCommand extends ImageCommand {
static category = "image-editing"
static description = "Spins an image";
static aliases = ["sphere"];
params = {
togif: true
};
static noImage = "You need to provide an image/GIF to spin!";
static command = "globe";
}
export default GlobeCommand;