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 ' }; } }