Explorar el Código

create search service

itizawa hace 5 años
padre
commit
dc923d294f
Se han modificado 1 ficheros con 16 adiciones y 0 borrados
  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;