RecieveService.ts 186 B

12345678910111213
  1. import { Service } from '@tsed/di';
  2. @Service()
  3. export class ReceiveService {
  4. receive(body) {
  5. console.log('Receive Class', body);
  6. console.log('wai');
  7. return body;
  8. }
  9. }