flowstate 0.7.1

Workflow runtime powered by finite state machines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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::*;