//! Flawless is an execution engine for durable computation. It will run your code until completion even in
//! the presence of hardware or software failure.
//!
//! For more information check out the website: [https://flawless.dev](https://flawless.dev).
mod wasabi;
pub mod exe;
pub mod http;
pub mod log;
pub mod rand;
pub mod retry;
#[doc(hidden)]
pub mod input;
#[doc(hidden)]
pub mod panic;
pub use flawless_macros::workflow;