app.controller.ts 239 B

123456789101112
  1. import { Controller, Get } from '@nestjs/common';
  2. @Controller()
  3. export class AppController {
  4. constructor() {}
  5. // used for check healthy after build finished
  6. @Get('healthy')
  7. async checkServer() {
  8. return { status: 200 };
  9. }
  10. }