intento de registrar a un participante a un evento

This commit is contained in:
2023-02-17 15:06:59 -06:00
parent acf2bb3856
commit d14e7e21d1
4 changed files with 41 additions and 8 deletions
+1
View File
@@ -3,6 +3,7 @@ import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
app.enableCors()
await app.listen(AppModule.port);
}
bootstrap();