mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2025-03-12 16:11:43 +01:00
17 lines
395 B
Rust
17 lines
395 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.
|
|
|
|
use slog::Logger;
|
|
|
|
mod shelly;
|
|
|
|
use futures::prelude::*;
|
|
use futures::task::Spawn;
|
|
|
|
use crate::config::Settings;
|
|
use crate::error::Result;
|