//! Core ETL (Extract, Transform, Load) abstractions
//!
//! This module provides trait definitions for building data pipelines
//! that extract data from sources, transform it, and load it to destinations.
pub use Extractor;
pub use Loader;
pub use Pipeline;
pub use ;