// Copyright (c) 2026 vectorless developers
// SPDX-License-Identifier: Apache-2.0
//! Pipeline execution module.
//!
//! This module provides the core pipeline infrastructure:
//! - [`IndexContext`] - Context passed between stages
//! - [`PipelineExecutor`] - Executes the indexing pipeline
//! - [`PipelineOrchestrator`] - Flexible stage orchestration with dependencies
//! - [`IndexMetrics`] - Performance metrics collection
//! - [`FailurePolicy`] - Configurable failure handling for stages
//! - [`StageRetryConfig`] - Retry configuration for stages
pub use ;
pub use PipelineExecutor;
pub use IndexMetrics;
pub use ;