mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2025-03-12 08:01:42 +01:00
17 lines
441 B
Rust
17 lines
441 B
Rust
//! Indpendent Communication modules
|
|
//!
|
|
//! This is where dynamic modules are implemented later on using libloading / abi_stable_crates et
|
|
//! al.
|
|
//! Additionally, FFI modules to other languages (Python/Lua/...) make the most sense in here as
|
|
//! well.
|
|
|
|
mod mqtt;
|
|
|
|
use slog::Logger;
|
|
|
|
pub fn init(log: Logger) {
|
|
info!(log, "Initializing submodules");
|
|
mqtt::init(log.new(o!()));
|
|
info!(log, "Finished initializing submodules");
|
|
}
|