initial commit

This commit is contained in:
Gsk54
2022-12-13 13:39:06 +01:00
parent b8f4415b2e
commit 225aed4d36
14 changed files with 15602 additions and 79 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();