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 handlers and output helpers so that integration tests
7//! can invoke them directly against a real server.
8
9pub mod commands;
10pub mod config;
11pub mod output;