File

src/app.service.ts

Index

Methods

Constructor

constructor(utilService: UtilsService)
Parameters :
Name Type Optional
utilService UtilsService No

Methods

getHello
getHello()
Returns : string
import { Injectable } from '@nestjs/common';
import { UtilsService } from './utils/utils.service';
@Injectable()
export class AppService {
  constructor(private readonly utilService: UtilsService) {}
  getHello(): string {
    return this.utilService.Enums.Responses.GenericRespEnum.REQ_OK;
  }
}

results matching ""

    No results matching ""