CV/cv/src/app.controller.ts
2023-10-21 10:27:20 +02:00

13 lines
285 B
TypeScript

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