Criação do handler de autenticação, para um futuro microserviço de auth

This commit is contained in:
unknown
2025-03-31 08:31:14 -03:00
parent 2fd5ae2b1f
commit 69e10717e8
18 changed files with 433 additions and 748 deletions

View File

@@ -8,6 +8,7 @@ async function bootstrap() {
const app = await NestFactory.create(AppModule);
app.useGlobalInterceptors(new ResponseInterceptor());
app.useGlobalPipes(
@@ -36,6 +37,6 @@ async function bootstrap() {
SwaggerModule.setup('docs', app, document);
await app.listen(9001);
await app.listen(8066);
}
bootstrap();