// 외부 파일로 리팩토링된 모든 스토리지 관련 함수를 통합적으로 내보내는 파일 // 기존 코드는 storage/ 디렉터리로 이동되었습니다. export { // 트랜잭션 관련 함수 loadTransactionsFromStorage, saveTransactionsToStorage, clearAllTransactions, // 예산 데이터 관련 함수 loadBudgetDataFromStorage, saveBudgetDataToStorage, clearAllBudgetData, // 카테고리 관련 함수 loadCategoryBudgetsFromStorage, saveCategoryBudgetsToStorage, clearAllCategoryBudgets, // 데이터 초기화 함수 resetAllData } from './storage';