21 lines
No EOL
427 B
JavaScript
21 lines
No EOL
427 B
JavaScript
class Command {
|
|
constructor(client, cluster, ipc, message, args, content) {
|
|
this.client = client;
|
|
this.cluster = cluster;
|
|
this.ipc = ipc;
|
|
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; |