1//! Command-line interface components.
2//!
3//! This module provides the command-line argument parsing and configuration
4//! structures for the image optimizer tool.
56#[allow(clippy::module_name_repetitions)]
7pub mod cli_args;
89pub use cli_args::Cli;