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(); + } }