Files
ashen-realms/apps/api/src/health/health.module.ts
2026-08-18 20:00:40 +02:00

8 lines
175 B
TypeScript

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