ironflow-cli 0.1.11

CLI tool to drive the Ironflow workflow engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # ironflow-cli
//!
//! Library crate exposing CLI internals for integration testing.
//!
//! The binary entry point is in `main.rs`; this module re-exports
//! the command tree, the command handlers, and the output helpers so that
//! integration tests can invoke them directly against a real server.

pub mod cli;
pub mod commands;
pub mod config;
pub mod confirm;
pub mod output;

pub use cli::{Cli, Commands};