1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//! 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;