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
14
15
16
/*
    appellation: sources <module>
    authors: @FL03
*/
//! this module defines the varioussources the system is compatible with as well as a
//! [`SourceManager`] for handling them
#[doc(inline)]
pub use self::{manager::SourceManager, registry::SourceRegistry};

pub mod manager;
pub mod registry;

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