From 99dab30ef113991197cbdb5bbce88c8b53746886 Mon Sep 17 00:00:00 2001 From: sdraris Date: Tue, 26 Aug 2025 14:45:24 +0200 Subject: [PATCH] app.controller added --- src/app.controller.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app.controller.ts b/src/app.controller.ts index cce879e..37c10d2 100644 --- a/src/app.controller.ts +++ b/src/app.controller.ts @@ -6,7 +6,7 @@ export class AppController { constructor(private readonly appService: AppService) {} @Get() - getHello(): string { - return this.appService.getHello(); + getOverView() { + return this.appService.getOverView(); } }