Files
HealthCarePregnant/pcm-platform/backend/src/modules/health/health.module.ts
T
2026-06-18 09:48:05 +08:00

10 lines
255 B
TypeScript

import { Module } from '@nestjs/common';
import { HealthController } from './health.controller';
import { HealthService } from './health.service';
@Module({
controllers: [HealthController],
providers: [HealthService],
})
export class HealthModule {}