imp_core/workflow/mod.rs
1//! Workflow-first runtime data model.
2//!
3//! The workflow module starts as a lightweight contract model that can wrap
4//! existing imp runs without changing agent behavior. Later workflow runtime
5//! features (policy, verification, evidence, child runs) build on these types.
6
7mod contract;
8mod verification;
9mod verification_runner;
10
11pub use contract::*;
12pub use verification::*;
13pub use verification_runner::*;