13 lines
420 B
Rust
13 lines
420 B
Rust
|
|
//! Auto-assign submodules: wires focused sub-files and re-exports public items.
|
||
|
|
|
||
|
|
#[allow(clippy::module_inception)]
|
||
|
|
mod auto_assign;
|
||
|
|
mod reconcile;
|
||
|
|
mod scan;
|
||
|
|
mod story_checks;
|
||
|
|
mod watchdog;
|
||
|
|
|
||
|
|
// Re-export items that were pub(super) in the original monolithic auto_assign.rs
|
||
|
|
// so that pool::lifecycle and pool::pipeline continue to access them unchanged.
|
||
|
|
pub(super) use scan::{find_free_agent_for_stage, is_agent_free};
|