flowstate 0.8.0

Workflow runtime powered by finite state machines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(feature = "unstable_middleware")]
pub mod middleware;
pub mod prelude;

mod state;
mod types;
mod workflow;

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

#[cfg(feature = "async")]
pub use async_trait::async_trait as async_state;

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