From c5f284023a99687af062f92dc331a0c1f64ba5dd Mon Sep 17 00:00:00 2001 From: Felipe Batista Date: Sat, 10 Jan 2026 11:49:31 -0300 Subject: [PATCH] teste --- src/app.controller.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app.controller.ts b/src/app.controller.ts index b0dff2f..4a986ea 100644 --- a/src/app.controller.ts +++ b/src/app.controller.ts @@ -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 ' }; } }