summaryrefslogtreecommitdiff
path: root/src/models/commands/AutoReply.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/commands/AutoReply.ts')
-rw-r--r--src/models/commands/AutoReply.ts17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/models/commands/AutoReply.ts b/src/models/commands/AutoReply.ts
new file mode 100644
index 0000000..fbc7e46
--- /dev/null
+++ b/src/models/commands/AutoReply.ts
@@ -0,0 +1,17 @@
+// import Command from '../Command.js'
+
+// module.exports = class AutoReplyCommand extends Command {
+// constructor(client, info) {
+// super(client, info);
+
+// this.reply = info.reply || false;
+// }
+
+// run(msg, args, fromPattern) {
+// return this.reply ? msg.reply(this.generateText(fromPattern)) : msg.say(this.generateText(fromPattern));
+// }
+
+// generateText() {
+// throw new Error('The generateText method is required.');
+// }
+// }; \ No newline at end of file