Procházet zdrojové kódy

create search service

itizawa před 5 roky
rodič
revize
dc923d294f
1 změnil soubory, kde provedl 16 přidání a 0 odebrání
  1. 16 0
      src/server/service/growi-bot/search.js

+ 16 - 0
src/server/service/growi-bot/search.js

@@ -0,0 +1,16 @@
+
+
+class SearchService {
+
+  constructor(client) {
+    this.client = client;
+  }
+
+  search(body, args) {
+    console.log(body, args);
+  }
+
+}
+
+
+module.exports = SearchService;