system health 추가

This commit is contained in:
2025-12-15 09:18:49 +09:00
parent edf8681ea0
commit 15c0ad0a1a
4 changed files with 114 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { Module } from '@nestjs/common';
import { SystemController } from './system.controller';
import { SystemService } from './system.service';
@Module({
controllers: [SystemController],
providers: [SystemService],
})
export class SystemModule {}