//! State backend abstraction. Two concrete backends:
//! `InProcessBackend` for embedded single-process runs, and
//! `ObjectStoreBackend` for anything durable (local filesystem via
//! `file://`, or S3/GCS/Azure).
pub use ;
pub use ;
pub use InProcessBackend;
pub use ObjectStoreBackend;
pub use ;