19 lines
365 B
JavaScript
19 lines
365 B
JavaScript
|
class Command {
|
||
|
constructor(client, message, args, content) {
|
||
|
this.client = client;
|
||
|
this.message = message;
|
||
|
this.args = args;
|
||
|
this.content = content;
|
||
|
}
|
||
|
|
||
|
async run() {
|
||
|
return "It works!";
|
||
|
}
|
||
|
|
||
|
static description = "No description found";
|
||
|
static aliases = [];
|
||
|
static arguments = [];
|
||
|
static requires = [];
|
||
|
}
|
||
|
|
||
|
module.exports = Command;
|