import { Module } from '@nestjs/common';
import { FundAllocationDomainService } from './services/fund-allocation.service';
@Module({
providers: [FundAllocationDomainService],
exports: [FundAllocationDomainService],
})
export class DomainModule {}