11 lines
257 B
Rust
11 lines
257 B
Rust
/// Flow Module
|
|
///
|
|
/// Provides workflow/flow management with templates and instances.
|
|
|
|
pub mod template;
|
|
pub mod instance;
|
|
pub mod rhai;
|
|
|
|
pub use template::{FlowTemplate, FlowStep};
|
|
pub use instance::{FlowInstance, FlowStatus, StepStatus, StepInstance};
|