Skip to main content

harmont_cli/orchestrator/
mod.rs

1//! Local-first build orchestration.
2//!
3//! The orchestrator owns the per-run state: the event bus that
4//! announces `BuildEvent`s, the source-archive store served to
5//! step-executor plugins, the cancellation atomic, and the chain
6//! scheduler that dispatches each step to a plugin via the plan-1
7//! plugin host.
8
9pub mod archive;
10pub mod cache;
11pub mod docker_client;
12pub mod events;
13pub mod output_subscriber;
14pub mod scheduler;
15pub mod signal;
16pub mod source;
17
18pub use scheduler::run;