//! Generic task trait for pipeline execution.
use async_trait;
use BoxliteResult;
/// Trait for tasks that can be executed in a pipeline.
///
/// Implement this trait to define custom task types for your pipeline.
/// Tasks run with a shared context, which is cloned per task.
pub type BoxedTask<Ctx> = ;