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.
56pub mod commands;
7pub mod output;
89pub use commands::*;
10pub use output::*;