flowstate 0.7.0

Workflow runtime powered by finite state machines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod prelude;

mod state;
mod types;
mod workflow;

#[cfg(feature = "macros")]
pub use flowstate_proc::*;

pub use state::*;
pub use types::*;
pub use workflow::*;