image_optimizer/cli/
mod.rs

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