//! Apache Kafka backend module
//!
//! This module provides comprehensive Kafka integration for OxiRS streaming,
//! organized into specialized sub-modules for better maintainability.
// Re-export commonly used types
pub use ;
pub use ;
pub use KafkaEvent;
// Type alias for producer (KafkaBackend acts as the producer)
pub type KafkaProducer = KafkaBackend;
// Type alias for consumer (KafkaBackend acts as the consumer manager)
pub type KafkaConsumer = KafkaBackend;