3328c52cb4
Add outbound group-bot alerts, rate/amount rules, stuck-order cron, HQ test button, and health db/redis checks. Co-authored-by: Cursor <cursoragent@cursor.com>
7 lines
236 B
TypeScript
7 lines
236 B
TypeScript
import { Module } from '@nestjs/common';
|
||
import { HealthController } from './health.controller';
|
||
|
||
/** Prisma / Redis 已为 Global,Health 直接注入探活 */
|
||
@Module({ controllers: [HealthController] })
|
||
export class HealthModule {}
|