Files
zellyy-finance/src/utils/sync/transactionSync.ts
gpt-engineer-app[bot] 74e7ea19fd Refactor transaction sync module
Refactors the transaction sync module for better organization.
2025-03-16 10:05:06 +00:00

14 lines
259 B
TypeScript

// 트랜잭션 동기화 기능을 내보내는 파일
import {
uploadTransactions,
downloadTransactions,
deleteTransactionFromServer
} from './transaction';
export {
uploadTransactions,
downloadTransactions,
deleteTransactionFromServer
};