systemg 0.57.4

An agent-friendly general process composer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! The `stop` command, rebuilt from first principles.
//!
//! - [`crate::stop::plan`] — resolves stop's selectors into one exhaustive
//!   [`crate::stop::StopPlan`].
//! - [`crate::stop::diagnostics`] — typed diagnostics for stop failures.

pub mod diagnostics;
pub mod plan;

pub use diagnostics::{project_not_found, service_not_found};
pub use plan::{StopPlan, StopPlanError, resolve_plan};