codex-sync 0.5.0

Sync and merge Codex conversations across computers, LAN, SSH, and offline storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Synchronization domain.
//!
//! The transport-independent engine lives in [`core`]. Concrete transports are
//! thin adapters layered on top of it, so adding another relay does not duplicate
//! merge, validation, conflict, or atomic-write behavior.

pub mod core;
pub mod directory;
pub mod http;
pub mod ssh;

mod codex;