p2p_chat/sync/mod.rs
1//! This module contains the synchronization logic for the application.
2//!
3//! It includes mechanisms for exponential backoff, the core synchronization
4//! engine, and retry policies for network operations.
5pub mod backoff;
6pub mod engine;
7pub mod retry;
8
9pub use engine::{DhtQueryResult, SyncEngine, SyncEvent, SyncStores};