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