app.controller added

This commit is contained in:
sdraris 2025-08-26 14:45:24 +02:00
parent 56559b321b
commit 99dab30ef1

View File

@ -6,7 +6,7 @@ export class AppController {
constructor(private readonly appService: AppService) {}
@Get()
getHello(): string {
return this.appService.getHello();
getOverView() {
return this.appService.getOverView();
}
}