acme_engine/sources/
mod.rs

1/*
2    appellation: sources <module>
3    authors: @FL03
4*/
5//! this module defines the varioussources the system is compatible with as well as a
6//! [`SourceManager`] for handling them
7#[doc(inline)]
8pub use self::{manager::SourceManager, registry::SourceRegistry};
9
10pub mod manager;
11pub mod registry;
12
13pub(crate) mod prelude {
14    pub use super::manager::*;
15    pub use super::registry::*;
16}