mirror of
https://github.com/docmost/docmost.git
synced 2025-11-21 11:01:10 +10:00
Add health check and dev script
This commit is contained in:
8
apps/server/src/integrations/health/health.module.ts
Normal file
8
apps/server/src/integrations/health/health.module.ts
Normal file
@ -0,0 +1,8 @@
|
||||
import { Global, Module } from '@nestjs/common';
|
||||
import { HealthController } from './health.controller';
|
||||
|
||||
@Global()
|
||||
@Module({
|
||||
controllers: [HealthController],
|
||||
})
|
||||
export class HealthModule {}
|
||||
Reference in New Issue
Block a user