/** * 健康检查统一导出 * * 提供SAE健康检查端点,用于存活和就绪探测。 * * @module health * * @example * ```typescript * import { registerHealthRoutes } from '@/common/health' * import Fastify from 'fastify' * * const app = Fastify() * * // 注册健康检查路由 * await registerHealthRoutes(app) * * // SAE配置示例: * // - Liveness Probe: GET /health/liveness (每10秒检查一次) * // - Readiness Probe: GET /health/readiness (每5秒检查一次) * ``` */ export { registerHealthRoutes } from './healthCheck.js' export type { HealthCheckResponse } from './healthCheck.js'