actionqueue_storage/mutation/mod.rs
1//! Storage-owned mutation authority surfaces.
2//!
3//! Durable lifecycle mutations must route through the authority lane defined in
4//! [`authority`]. Replay reducers remain replay-only projection components.
5
6pub mod authority;
7
8pub use authority::{
9 MutationAuthorityError, MutationProjection, MutationValidationError, StorageMutationAuthority,
10};