//! Core traits and abstractions for llm-connector
//!
//! This module provides the fundamental abstractions for the architecture:
//! - Provider: Service implementation interface
//! - Protocol: Protocol specification interface
//! - HttpTransport: HTTP communication layer
//! - ErrorMapper: Error mapping utilities
// Re-export core traits
pub use Provider;
pub use Protocol;
pub use HttpTransport;
pub use ErrorMapper;