lellm_graph/state/mod.rs
1//! 状态管理 — State, WorkflowState, StateKey, StateLens。
2
3pub mod state;
4pub mod state_lens;
5pub mod statekey;
6pub mod workflow_state;
7
8pub use state::*;
9pub use statekey::*;
10// NOTE: workflow_state::StateMutation trait is NOT re-exported here
11// to avoid ambiguity with state::StateMutation enum.
12// Access it via crate::state::workflow_state::StateMutation.
13pub use state_lens::*;
14pub use workflow_state::{LastWriteWins, MergeStrategy, WorkflowError, WorkflowState};