This library provides a module that adds a /health endpoint to your nest service. This endpoint can be used for Kubernetes health checks.
/health
Last updated 3 years ago
import { Module } from '@nestjs/common'; import { HealthModule } from '@microservice-stack/nest-health'; @Module({ imports: [HealthModule], }) export class AppModule {}