MaternAlert / src /appointments /appointments.module.ts
Auspicious14's picture
feat: add core maternal health backend features
c35b446
Raw
History Blame Contribute Delete
372 Bytes
import { Module } from '@nestjs/common';
import { AppointmentsService } from './appointments.service';
import { AppointmentsController } from './appointments.controller';
import { PrismaService } from '../database/prisma.service';
@Module({
controllers: [AppointmentsController],
providers: [AppointmentsService, PrismaService],
})
export class AppointmentsModule {}