choir_bridge/lib.rs
1//! Bridge library surface: GitHub App auth, status write-back, and the
2//! speculative-train mechanics. The sync loop lives in the binary; this
3//! exists so auth and train building are testable offline.
4//!
5//! # Where this sits
6//!
7//! `docs/architecture.md` is the map of the whole workspace.
8//! This crate is the mirror-first forge bridge (D21).
9//!
10//! It builds on [`choir_fs`], [`choir_hash`], [`choir_identity`] and [`choir_view`].
11
12pub mod github;
13pub mod queue;