Setup Nest and React projects

This commit is contained in:
Charles Bochet
2022-12-01 15:58:08 +01:00
parent e75c8276ab
commit cfc3a37e1f
36 changed files with 44436 additions and 1 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('/health')
health(): string {
return this.appService.health();
}
}