stygian-graph 0.8.0

High-performance graph-based web scraping engine with AI extraction, multi-modal support, and anti-bot capabilities
Documentation
//! Pipeline executor

/// Pipeline executor for orchestrating scraping operations
pub struct PipelineExecutor;

impl PipelineExecutor {
    /// Create a new pipeline executor
    pub const fn new() -> Self {
        Self
    }
}

impl Default for PipelineExecutor {
    fn default() -> Self {
        Self::new()
    }
}

#[cfg(test)]
#[allow(clippy::unwrap_used)]
mod tests {
    use super::*;

    #[test]
    fn new_returns_executor() {
        let _e = PipelineExecutor::new();
    }

    #[test]
    fn default_is_same_as_new() {
        let _ = PipelineExecutor;
    }
}