import { Controller, Get } from '@nestjs/common'; import { AppService } from './app.service'; @Controller() export class AppController { constructor(private readonly appService: AppService) {} @Get() index() { return this.appService.apiInfo(); } @Get('health') getHealthCheck(): string { return this.appService.getHealthCheck(); } }