noetl_executor/worker/mod.rs
1//! Worker-only abstractions.
2//!
3//! The CLI does NOT consume types from this module โ its local-mode
4//! runner is a tree walker that doesn't need a pull-model command
5//! source. See ยง H.10 of the global hybrid cloud blueprint for the
6//! architectural rationale.
7//!
8//! Submodules:
9//!
10//! - [`source`] โ the `Command` struct + `CommandSource` trait that the
11//! worker's NATS pull loop will implement (R-1.3).
12
13pub mod source;