//! Kelper - A Kubernetes image management tool
//!
//! This crate provides functionality for managing and inspecting container images
//! in Kubernetes clusters.
// Public API
pub use Args;
pub use K8sClient;
// Internal modules
// Re-export commonly used items
pub use ;
pub use ;
pub use logging;
pub use ;
/// Result type for Kelper operations
pub type KelperResult<T> = Result;
/// Error type for Kelper operations
pub type KelperError = Error;