Files
wwjcloud-nest-v1/wwjcloud/src/core/health/health.module.ts

24 lines
641 B
TypeScript
Raw Normal View History

import { Module } from '@nestjs/common';
import { HealthController } from './health.controller';
import { HealthzController } from './healthz.controller';
import { HealthService } from './health.service';
import { QueueModule } from '@wwjCore/queue/queue.module';
import { EventBusModule } from '@wwjCore/event-bus/event-bus.module';
/**
*
* Kubernetes
*/
@Module({
imports: [
QueueModule,
EventBusModule,
],
controllers: [
HealthController,
HealthzController,
],
providers: [HealthService],
exports: [HealthService],
})
export class HealthModule {}