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::*; }