zahmis пре 5 година
родитељ
комит
f913f7a710
1 измењених фајлова са 19 додато и 0 уклоњено
  1. 19 0
      packages/slackbot-proxy/src/services/RecieveService.ts

+ 19 - 0
packages/slackbot-proxy/src/services/RecieveService.ts

@@ -0,0 +1,19 @@
+import { Service } from '@tsed/di';
+
+@Service()
+export class ReceiveService {
+
+  // body:any
+
+  // constructor(body) {
+  //   this.body = body;
+  // }
+
+  receive(body) {
+
+    console.log('Receive Class', body);
+    console.log('wai');
+    return body;
+  }
+
+}