Port to ESM modules (haha funny), removed cache request, many other changes that I forgot about

This commit is contained in:
Essem 2021-08-19 09:19:14 -05:00
parent 2fe45d842b
commit ae2ebe0337
No known key found for this signature in database
GPG key ID: 7D497397CC3A2A8C
157 changed files with 1661 additions and 897 deletions

View file

@ -1,4 +1,4 @@
const ImageCommand = require("../../classes/imageCommand.js");
import ImageCommand from "../../classes/imageCommand.js";
class WallCommand extends ImageCommand {
static description = "Creates a wall from an image";
@ -7,4 +7,4 @@ class WallCommand extends ImageCommand {
static command = "wall";
}
module.exports = WallCommand;
export default WallCommand;