Shasha/cmds/fun/chat.js
2021-05-28 23:55:53 +00:00

18 lines
No EOL
449 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) {
//chatAnswer(this.client, msg);
}
};