procpilot 0.3.0

Production-grade subprocess runner with typed errors, retry, and timeout
Documentation
1
2
3
4
5
6
7
8
//! Test helper: print args separated by spaces, followed by a newline.
//!
//! Not part of procpilot's public API. Used by internal tests.

fn main() {
    let args: Vec<String> = std::env::args().skip(1).collect();
    println!("{}", args.join(" "));
}