Skip to main content

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 events;
7pub mod store;
8pub mod types;
9
10pub use store::WorkflowStore;
11pub use types::*;