30 lines
687 B
TypeScript
Raw Normal View History

import { Module } from "@nestjs/common";
import { FreebitService } from "./freebit.service";
import {
FreebitAuthService,
FreebitClientService,
FreebitMapperService,
FreebitOperationsService,
FreebitOrchestratorService,
} from "./services";
@Module({
providers: [
// Core services
FreebitAuthService,
FreebitClientService,
FreebitMapperService,
FreebitOperationsService,
FreebitOrchestratorService,
// Main service (for backward compatibility)
FreebitService,
],
exports: [
FreebitService,
// Export orchestrator in case other services need direct access
FreebitOrchestratorService,
],
})
export class FreebitModule {}