import { Controller, Get } from '@nestjs/common'; @Controller('/') export class RootController { @Get('/') getRoot(): string { return 'App is running!'; } }