Files
docmost/apps/server/src/integrations/health/health.module.ts
2024-07-05 10:10:08 +12:00

9 lines
193 B
TypeScript

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