docker_image_pusher/registry/
mod.rs

1//! Registry module for Docker registry interactions
2//!
3//! This module provides authentication and client logic for interacting with Docker Registry HTTP API v2.
4//! It supports login, token management, and robust error handling for registry operations.
5
6pub mod auth;
7pub mod client;
8
9pub use crate::config::AuthConfig;
10pub use auth::Auth;
11pub use client::{RegistryClient, RegistryClientBuilder}; // Make sure this is exported from registry module