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

View File

@@ -0,0 +1,12 @@
import { Controller, Get } from '@nestjs/common';
import { AppService } from './app.service';
@Controller()
export class AppController {
constructor(private readonly appService: AppService) {}
@Get()
getHello(): string {
return this.appService.getHello();
}
}