actionqueue_storage/recovery/mod.rs
1//! Recovery module for WAL replay and state reconstruction.
2//!
3//! Recovery components are replay-only reconstruction surfaces.
4//! Durable lifecycle mutation commands must route through
5//! [`crate::mutation::authority::StorageMutationAuthority`].
6
7pub mod bootstrap;
8pub mod reducer;
9pub mod replay;