wip nest course

This commit is contained in:
lenovo
2022-11-19 19:31:44 +01:00
parent ffbb3bf442
commit f0af98eb02
33 changed files with 15169 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();
}
}