iridis-flows 0.3.4

iridis is a framework that lets you define and build dataflow applications with ease.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub(crate) mod flows;

pub mod prelude {
    pub use crate::flows::*;

    pub use iridis_api::{self, prelude::*};

    pub(crate) use thirdparty::*;

    pub mod thirdparty {
        pub use eyre::{self, Context, OptionExt, Result};
    }
}