react-server675fbba4
react-servertreemainexamplesnestjssrcapp.controller.ts
examples/nestjs/src/app.controller.tsts278 Bf02d420c
import { Controller, Get } from "@nestjs/common";

import { AppService } from "./app.service.js";

@Controller()
export class AppController {
  constructor(private readonly appService: AppService) {}

  @Get()
  getHello(): string {
    return this.appService.getHello();
  }
}