CI / Check (push) Has been skipped
CI / Detect Changes (push) Successful in 3s
CI / Deploy Agent (push) Successful in 3m31s
CI / Deploy Dashboard (push) Successful in 2m38s
CI / Deploy Docs (push) Has been skipped
CI / Deploy MCP (push) Successful in 1m47s
11 lines
429 B
Rust
11 lines
429 B
Rust
//! 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};
|