import { Module } from '@nestjs/common';
import { ChildrenController } from './children.controller';
import { ChildrenService } from './children.service';
import { PairingService } from './pairing.service';
import { TimeWalletModule } from '../time-wallet/time-wallet.module';

@Module({
  imports: [TimeWalletModule],
  controllers: [ChildrenController],
  providers: [ChildrenService, PairingService],
  exports: [ChildrenService, PairingService],
})
export class ChildrenModule {}
