Skip to main content

rec/cli/
mod.rs

1//! Command-line argument parsing and output formatting.
2//!
3//! Defines the CLI structure using `clap` derive macros, including all
4//! subcommands, flags, and the [`Output`] helper for consistent formatting.
5
6pub mod commands;
7pub mod output;
8
9pub use commands::*;
10pub use output::*;