1// This file defines the registry module for handling Docker registry communication. 2 3pub mod auth; 4pub mod client; 5 6pub use auth::{Auth, AuthChallenge}; 7pub use client::RegistryClient;