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) {} constructor(private readonly appService: AppService) {}
@Get() @Get()
getHello(): string { getOverView() {
return this.appService.getHello(); return this.appService.getOverView();
} }
} }