Files
moraworld/apps/api/src/health/health.module.ts
T

8 lines
175 B
TypeScript

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