cognee_http_server/sync/mod.rs
1//! In-memory sync registry — one running cloud sync per user.
2//!
3//! See [`docs/http-server/routers/sync.md §3.1`](../../../../docs/http-server/routers/sync.md#31-concurrency-one-running-sync-per-user)
4//! for the concurrency model.
5
6pub mod registry;
7
8pub use registry::{AlreadyRunning, RunningSyncSnapshot, SyncRegistry};