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:
17
src/utils/sync/core/index.ts
Normal file
17
src/utils/sync/core/index.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
/**
|
||||
* 동기화 코어 모듈
|
||||
*/
|
||||
|
||||
// 타입 정의 내보내기
|
||||
export * from './types';
|
||||
|
||||
// 백업 및 복구 기능 내보내기
|
||||
export * from './backup';
|
||||
export * from './recovery';
|
||||
|
||||
// 상태 확인 기능 내보내기
|
||||
export * from './status';
|
||||
|
||||
// 동기화 작업 내보내기
|
||||
export * from './syncOperations';
|
||||
Reference in New Issue
Block a user