initial commit

This commit is contained in:
Gsk54
2022-12-23 16:36:23 +01:00
parent 36c88d0264
commit 030cf28fbd
16 changed files with 15080 additions and 76 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();