Skip to main content

ironflow_cli/
lib.rs

1//! # ironflow-cli
2//!
3//! Library crate exposing CLI internals for integration testing.
4//!
5//! The binary entry point is in `main.rs`; this module re-exports
6//! the command tree, the command handlers, and the output helpers so that
7//! integration tests can invoke them directly against a real server.
8
9pub mod cli;
10pub mod commands;
11pub mod config;
12pub mod confirm;
13pub mod output;
14
15pub use cli::{Cli, Commands};