#![doc = include_str!("../README.md")]
mod edge;
pub mod prelude;
mod stack;
mod state_machine;
pub use state_machine::*;
#[cfg(feature = "history")]
mod journaled;
#[cfg(feature = "history")]
pub use journaled::*;
#[cfg(feature = "dsl")]
pub use fsmy_dsl as dsl;