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