//! Werkbank control-plane: the dynamic-execution job queue. //! //! The control plane enqueues declarative [`Job`](compliance_core::models::werkbank::Job)s //! and Werkbank runners lease, run, and complete them. [`queue::JobQueue`] is the //! Mongo-backed queue behind that flow (WB-02); the runner-facing HTTP transport //! and the runner itself land in later stories. pub mod queue; pub use queue::{JobQueue, SweepOutcome};