node-pt / src /app.controller.ts
bardd's picture
first commit
7b850b7
raw
history blame
286 Bytes
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();
}
}