docker_image_pusher/cli/
mod.rs

1//! Command line interface module
2//!
3//! This module provides the entry point for parsing command-line arguments and running the main workflow.
4//! It includes argument parsing, validation, and the main runner logic for pushing Docker images.
5
6pub mod args;
7pub mod runner;
8
9pub use args::Args;
10pub use runner::Runner;