se creo el servicio para guardar participantes

This commit is contained in:
2023-02-16 16:49:52 -06:00
parent bc84b7d63d
commit acf2bb3856
25 changed files with 1488 additions and 356 deletions
+1 -1
View File
@@ -3,6 +3,6 @@ import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(3000);
await app.listen(AppModule.port);
}
bootstrap();