dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_IngestionModule cluster_IngestionModule_providers cluster_IngestionModule_exports AllocationRulesService AllocationRulesService IngestionService IngestionService IngestionModule IngestionModule IngestionModule->AllocationRulesService IngestionModule->IngestionService AllocationRulesService AllocationRulesService AllocationRulesService->IngestionModule IngestionService IngestionService IngestionService->IngestionModule

File

src/orders/ingestion/ingestion.module.ts

import { Module } from '@nestjs/common';
import { IngestionController } from './ingestion.controller';
import { IngestionService } from './ingestion.service';
import { AllocationRulesService } from './allocation/allocation-rules.service';

@Module({
  controllers: [IngestionController],
  providers: [IngestionService, AllocationRulesService],
  exports: [IngestionService, AllocationRulesService],
})
export class IngestionModule {}

results matching ""

    No results matching ""