From ae6ee552c8c86db0044f6580012efe44a69e0c43 Mon Sep 17 00:00:00 2001 From: Hanim Date: Fri, 12 Sep 2025 12:03:41 +0200 Subject: [PATCH] correction spec.ts file --- src/app.controller.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app.controller.ts b/src/app.controller.ts index 37c10d2..1393510 100644 --- a/src/app.controller.ts +++ b/src/app.controller.ts @@ -9,4 +9,9 @@ export class AppController { getOverView() { return this.appService.getOverView(); } + + @Get('hello') + getHello(): string { + return this.appService.getHello(); + } }