homeboy 0.44.4

CLI for multi-component deployment and development workflow automation
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Generic pipeline execution infrastructure.
//!
//! This module provides the core pipeline framework:
//! - `pipeline` - Traits, topological sorting, batch execution
//! - `executor` - Command routing (local vs SSH), CLI tool templating
//!
//! Domain-specific implementations (release, deploy, etc.) use these primitives
//! to build their orchestration logic.

pub mod executor;
pub mod pipeline;