Files
edr-platform/apps/edr-payment-api/src/modules/health/health.module.ts
2026-06-11 15:25:24 +03:00

8 lines
175 B
TypeScript

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