assay-domain 0.1.1

Shared workflow domain model (types + store traits) for the assay workflow engine, auth layer, and dashboard.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Shared types and storage traits used across assay crates.
//!
//! Consumers: `assay-workflow`, `assay-auth`, `assay-engine`.
//! Backend impls live in the domain crates behind Cargo features.

pub mod events;
pub mod store;
pub mod types;

pub use store::WorkflowStore;
pub use types::*;