diff options
| author | joonhoekim <26rote@gmail.com> | 2025-07-21 07:14:40 +0000 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-07-21 07:14:40 +0000 |
| commit | 8165f003563e3d7f328747be3098542fe527b014 (patch) | |
| tree | 928a4cd23adbde13d96ad4515a1bdf435da8a463 /instrumentation.ts | |
| parent | 8f19c063aeb3df1eed9cab58f4bf7cac22ab13dc (diff) | |
Knox API 임직원 스키마 추가, 동기화 기능 추가
Diffstat (limited to 'instrumentation.ts')
| -rw-r--r-- | instrumentation.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/instrumentation.ts b/instrumentation.ts index 48d013dd..7641c777 100644 --- a/instrumentation.ts +++ b/instrumentation.ts @@ -11,6 +11,10 @@ export async function register() { // PLM 동기화 스케줄러인데, 1회만 가져오기로 했으므로 주석 처리 // const { startEnhancedSyncScheduler } = await import('./lib/nonsap-sync/enhanced-sync-service'); // startEnhancedSyncScheduler(); + + // Knox 임직원 동기화 스케줄러 시작 + const { startKnoxEmployeeSyncScheduler } = await import('./lib/knox-sync/employee-sync-service'); + startKnoxEmployeeSyncScheduler(); } catch (error) { console.error('Failed to start Enhanced NONSAP sync scheduler:', error); // 스케줄러 실패해도 애플리케이션은 계속 실행 |
