2025-09-09 18:19:54 +09:00
|
|
|
import { Module } from "@nestjs/common";
|
2025-09-25 16:38:21 +09:00
|
|
|
import { FreebitOrchestratorService } from "./services/freebit-orchestrator.service";
|
|
|
|
|
import { FreebitOperationsService } from "./services/freebit-operations.service";
|
2025-09-26 18:28:47 +09:00
|
|
|
import { FreebitClientService } from "./services/freebit-client.service";
|
|
|
|
|
import { FreebitAuthService } from "./services/freebit-auth.service";
|
2025-09-04 18:34:28 +09:00
|
|
|
|
|
|
|
|
@Module({
|
2025-09-25 15:11:28 +09:00
|
|
|
providers: [
|
|
|
|
|
// Core services
|
2025-09-26 18:28:47 +09:00
|
|
|
FreebitClientService,
|
|
|
|
|
FreebitAuthService,
|
2025-09-25 15:11:28 +09:00
|
|
|
FreebitOperationsService,
|
|
|
|
|
FreebitOrchestratorService,
|
|
|
|
|
],
|
|
|
|
|
exports: [
|
|
|
|
|
// Export orchestrator in case other services need direct access
|
|
|
|
|
FreebitOrchestratorService,
|
|
|
|
|
],
|
2025-09-04 18:34:28 +09:00
|
|
|
})
|
2025-09-25 15:11:28 +09:00
|
|
|
export class FreebitModule {}
|