Compare commits

..

No commits in common. "b034330e34f34894ecb4786f31469a8e6b3ceff0" and "6fe94a4a7c413d1c4eb6c7eace5c6abcc179bfc4" have entirely different histories.

1 changed files with 2 additions and 2 deletions

View File

@ -20,6 +20,6 @@ async function bootstrap() {
.build();
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');
await app.listen(8066);
}
bootstrap();