mirror of
https://github.com/danbulant/Shasha
synced 2026-05-19 20:18:48 +00:00
19 lines
No EOL
500 B
JavaScript
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);
|
|
}
|
|
}; |