import { Controller, Get } from '@nestjs/common'; import { AppService } from './app.service'; @Controller() export class AppController { constructor(private readonly appService: AppService) {} @Get() getOverView() { return this.appService.getOverView(); } @Get('hello') getHello(): string { return this.appService.getHello(); } }