Shasha/cmds/fun/chat.js
2021-05-16 11:37:00 +02:00

19 lines
No EOL
500 B
JavaScript

'use strict';
const commando = require("@iceprod/discord.js-commando");
// const { chatAnswer } = require("../../resources/shaChat");
module.exports = class chat extends commando.Command {
constructor(client) {
super(client, {
name: "chat",
memberName: "chat",
group: "fun",
description: "Lets chat!"
});
}
async run(msg) {
return "Chat is currently unavailable.";
// chatAnswer(this.client, msg);
}
};