Files
zellyy-finance/src/utils/sync/core/index.ts
gpt-engineer-app[bot] 335848cca8 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.
2025-03-21 12:42:18 +00:00

18 lines
320 B
TypeScript

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