init data-connector

This commit is contained in:
Marcel Arndt
2024-07-09 15:12:16 +02:00
parent 9b2e286300
commit 092efb1f53
16 changed files with 15091 additions and 0 deletions
@@ -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();