stepflow_step/
lib.rs

1//! Step for [StepFlow](https://stepflow.dev)
2//!
3//! Allows a flow to be broken down into [`Step`]s that are easier for the user to work with.
4
5mod step;
6pub use step::{ Step, StepId };