Files
bigcapital/packages/server-nest/src/modules/App/App.controller.ts
2024-11-12 23:08:51 +02:00

13 lines
274 B
TypeScript

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