feature: a very minimal patients feature implemented. it needs lots of improvments though
This commit is contained in:
10
backend/src/modules/patients/patients.module.ts
Normal file
10
backend/src/modules/patients/patients.module.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { PrismaService } from '../../../prisma/prisma.service';
|
||||
import { PatientsController } from './patients.controller';
|
||||
import { PatientsService } from './patients.service';
|
||||
|
||||
@Module({
|
||||
controllers: [PatientsController],
|
||||
providers: [PatientsService, PrismaService],
|
||||
})
|
||||
export class PatientsModule {}
|
||||
Reference in New Issue
Block a user