Explorar o código

add echo command

kaori %!s(int64=5) %!d(string=hai) anos
pai
achega
d1fc20bf0e
Modificáronse 1 ficheiros con 8 adicións e 0 borrados
  1. 8 0
      src/server/service/bolt.js

+ 8 - 0
src/server/service/bolt.js

@@ -66,6 +66,14 @@ class BoltService {
     this.bolt.command('/growi-bot', async({ command, ack, say }) => { // demo
       await say('Hello');
     });
+
+    // The echo command simply echoes on command
+    this.bolt.command('/echo', async({ command, ack, say }) => {
+      // Acknowledge command request
+      await ack();
+
+      await say(`${command.text}`);
+    });
   }
 
 }