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