//! Sync protocol implementation for incremental state synchronization between storage providers.
//!
//! This module implements the getSyncChunk / processSyncChunk protocol that enables
//! active/backup storage synchronization. It includes:
//! - `SyncChunk`, `SyncMap`, `EntitySyncMap` types
//! - Entity merge logic for convergent merging of two copies of the same entity
//! - `get_sync_chunk` for extracting changed entities since a given timestamp
//! - `process_sync_chunk` for applying incoming entities with ID remapping
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;