Refactor sync data module

Splits the large `src/utils/sync/data.ts` file into smaller, more manageable modules to improve code organization, readability, and maintainability.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-21 12:42:18 +00:00
parent 66c7b5f132
commit 335848cca8
7 changed files with 374 additions and 152 deletions

View File

@@ -0,0 +1,17 @@
/**
* 동기화 코어 모듈
*/
// 타입 정의 내보내기
export * from './types';
// 백업 및 복구 기능 내보내기
export * from './backup';
export * from './recovery';
// 상태 확인 기능 내보내기
export * from './status';
// 동기화 작업 내보내기
export * from './syncOperations';