Switched to NestJS

This commit is contained in:
2022-09-05 09:51:34 +02:00
parent 75e0ad2f6f
commit 87aa032b6b
38 changed files with 3075 additions and 3368 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();
}
}