import { Module } from '@nestjs/common';
import { UnlinkAbhaFromPatientService } from './unlink-abha-from-patient.service';
import { UnlinkAbhaFromPatientController } from './unlink-abha-from-patient.controller';
import { DynamicDatabaseService } from 'src/dynamic_db.service';

@Module({
  controllers: [UnlinkAbhaFromPatientController],
  providers: [UnlinkAbhaFromPatientService,DynamicDatabaseService],
})
export class UnlinkAbhaFromPatientModule {}
