mirror of
https://github.com/docmost/docmost.git
synced 2025-11-20 04:11:08 +10:00
9 lines
193 B
TypeScript
9 lines
193 B
TypeScript
import { Global, Module } from '@nestjs/common';
|
|
import { HealthController } from './health.controller';
|
|
|
|
@Global()
|
|
@Module({
|
|
controllers: [HealthController],
|
|
})
|
|
export class HealthModule {}
|