fis-verification.service.ts 154 B

12345678
  1. import { Injectable } from '@nestjs/common';
  2. @Injectable()
  3. export class FisVerificationService {
  4. getHello(): string {
  5. return 'Hello World!';
  6. }
  7. }