flowstate 0.8.1

Workflow runtime powered by finite state machines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(feature = "async")]
use crate::middleware::AsyncWorkflowMiddleware;
use crate::middleware::WorkflowMiddleware;

#[derive(Default)]
pub struct IdentityMiddleware;

impl WorkflowMiddleware for IdentityMiddleware {}

#[cfg(feature = "async")]
impl AsyncWorkflowMiddleware for IdentityMiddleware {}