nestjs example

This commit is contained in:
Andras Bacsai
2024-06-03 14:26:12 +02:00
parent 884c2fb0d2
commit 7c3f09da52
16 changed files with 9090 additions and 0 deletions

10
nestjs/src/app.module.ts Normal file
View File

@@ -0,0 +1,10 @@
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
@Module({
imports: [],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}