feat: add nestjs

This commit is contained in:
Mauricio Siu
2024-06-30 20:39:01 -06:00
parent 90f5981b60
commit e43931a02e
17 changed files with 5553 additions and 0 deletions

8
nestjs/src/main.ts Normal file
View File

@@ -0,0 +1,8 @@
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(3000);
}
bootstrap();