teste
Deploy NestJS API / build-and-push-deploy (push) Has been cancelled Details

This commit is contained in:
Felipe Batista 2026-01-10 11:49:31 -03:00
parent df466ddaba
commit c5f284023a
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import { Controller, Get } from '@nestjs/common';
import { ApiTags, ApiOperation } from '@nestjs/swagger';
import { ApiOperation, ApiTags } from '@nestjs/swagger';
import { APP_VERSION } from './version';
@ApiTags('Main')
@ -14,7 +14,7 @@ export class AppController {
@Get('health')
@ApiOperation({ summary: 'Health check' })
healthCheck() {
return { status: 'TESTE COM ALESSANDRO ' };
return { status: 'TESTE COM Felipe ' };
}
}