//! Disk-spooled OpenAI Batch API backend.
//!
//! This module provides the production batch processing implementation:
//! - `store` — atomic disk I/O for job metadata and results.
//! - `queue` — tokio mpsc work queue connecting route handlers to the worker.
//! - `worker` — background task that processes jobs line-by-line.
//! - `routes` — axum HTTP handlers for `/v1/batches/*`.
pub use ;
pub use ;
pub use ;
pub use spawn_batch_worker;