Files
template-fullstack-monorepo/apps/backend/src/app.controller.ts
2025-07-28 08:16:34 +02:00

13 lines
281 B
TypeScript

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