Skip to main content

codex_sync/
sync.rs

1//! Synchronization domain.
2//!
3//! The transport-independent engine lives in [`core`]. Concrete transports are
4//! thin adapters layered on top of it, so adding another relay does not duplicate
5//! merge, validation, conflict, or atomic-write behavior.
6
7pub mod core;
8pub mod directory;
9pub mod http;
10pub mod ssh;
11
12mod codex;