20 lines
406 B
TypeScript
20 lines
406 B
TypeScript
import { Public } from '../identity/access.decorator';
|
|
import { Controller, Get } from '@nestjs/common';
|
|
import { HealthService } from './health.service';
|
|
|
|
@Public()
|
|
@Controller('health')
|
|
export class HealthController {
|
|
constructor(private readonly health: HealthService) {}
|
|
|
|
@Get('live')
|
|
live() {
|
|
return this.health.live();
|
|
}
|
|
|
|
@Get('ready')
|
|
ready() {
|
|
return this.health.ready();
|
|
}
|
|
}
|