import { Controller, Get } from '@nestjs/common'; import { ApiTags } from '@nestjs/swagger'; import { AppService } from './app.service'; @ApiTags('app (scaffolding)') @Controller() export class AppController { constructor(private readonly appService: AppService) {} @Get() getData() { return this.appService.getData(); } }