Files
noahspan-flying/api/src/health/health.module.ts
2025-10-02 12:00:24 -05:00

12 lines
262 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 {}