1//! Shared types and storage traits used across assay crates.
2//!
3//! Consumers: `assay-workflow`, `assay-auth`, `assay-engine`.
4//! Backend impls live in the domain crates behind Cargo features.
56pub mod store;
7pub mod types;
89pub use store::WorkflowStore;
10pub use types::*;