// crates/batch_engine/src/lib.rs
//! Batch orchestration engine: job queue, file storage, webhook delivery.
//!
//! HTTP-agnostic. The proxy crate wires this into axum routes.
/// Database access layer for batch jobs and webhook tasks.
/// The core orchestrator orchestrating background job processing loops.
/// Engine and queue error definitions.
/// Local file storage handling JSONL batch request and response payloads.
/// Batch job structs, states, and metadata types.
/// FIFO/Priority job queues (SQLite or in-memory).
/// Request validation helpers for batch JSONL lines.
/// Outbound webhook notification queues and delivery workers.
pub use BatchEngine;
pub use ;
pub use *;
pub use ;