import { Module } from "@nestjs/common"; import { FreebitOrchestratorService } from "./services/freebit-orchestrator.service"; import { FreebitMapperService } from "./services/freebit-mapper.service"; import { FreebitOperationsService } from "./services/freebit-operations.service"; @Module({ providers: [ // Core services FreebitMapperService, FreebitOperationsService, FreebitOrchestratorService, ], exports: [ // Export orchestrator in case other services need direct access FreebitOrchestratorService, ], }) export class FreebitModule {}