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 {}