import { Module } from '@nestjs/common'; import { HealthController } from './health.controller'; import { LexwareModule } from '../lexware/lexware.module'; import { EnrichmentModule } from '../enrichment/enrichment.module'; @Module({ imports: [LexwareModule, EnrichmentModule], controllers: [HealthController], }) export class HealthModule {}