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