gohorsejobs/backoffice/src/app.controller.ts

15 lines
409 B
TypeScript

import { Controller, Get, Req } from '@nestjs/common';
import { ApiOperation, ApiTags } from '@nestjs/swagger';
import { AppService } from './app.service';
@ApiTags('Root')
@Controller()
export class AppController {
constructor(private readonly appService: AppService) { }
@Get()
@ApiOperation({ summary: 'API Status' })
getStatus(@Req() req: any) {
return this.appService.getStatus(req);
}
}