mrmBot-Matrix/classes/command.js

21 lines
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;