first commit

This commit is contained in:
sbriat
2023-05-03 13:43:21 +02:00
parent c1aac93feb
commit 2a11a9e52c
16 changed files with 9001 additions and 87 deletions

8
src/app.module.ts Normal file
View File

@@ -0,0 +1,8 @@
import { Module } from '@nestjs/common';
@Module({
imports: [],
controllers: [],
providers: [],
})
export class AppModule {}

8
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();