import { Module } from '@nestjs/common';
import { ClinicalNotesWithAbhaService } from './clinical-notes-with-abha.service';
import { ClinicalNotesWithAbhaController } from './clinical-notes-with-abha.controller';
import { DynamicDatabaseService } from 'src/dynamic_db.service';

@Module({
  controllers: [ClinicalNotesWithAbhaController],
  providers: [ClinicalNotesWithAbhaService, DynamicDatabaseService],
})
export class ClinicalNotesWithAbhaModule { }
