acme-engine 0.4.0

the engine of the acme platform enabling automation and orchestration of tasks across various sources and sinks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
    appellation: sources <module>
    authors: @FL03
*/
//! this module defines automation pipelines for the aggregation and processing of data
#[doc(inline)]
pub use self::router::PipeRouter;

mod router;

pub(crate) mod prelude {
    pub use super::router::*;
}