assay_domain/lib.rs
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.
5
6pub mod engine;
7pub mod events;
8pub mod store;
9pub mod types;
10
11pub use store::WorkflowStore;
12pub use types::*;