From bf246e2882b7053deacf0b8ec814365ee5d4a75a Mon Sep 17 00:00:00 2001 From: joelson Date: Mon, 5 Jan 2026 14:56:17 -0300 Subject: [PATCH] chore: update API startup console log message --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index e215c20..3676328 100644 --- a/src/main.ts +++ b/src/main.ts @@ -21,5 +21,5 @@ async function bootstrap() { const document = SwaggerModule.createDocument(app, options); SwaggerModule.setup("docs", app, document); await app.listen(8066, '0.0.0.0');} -console.log('API rodando na porta 8066'); +console.log('API rodando na porta 8066 teste 2'); bootstrap();