bffh/src/modules.rs

17 lines
395 B
Rust
Raw Normal View History

2020-02-14 12:20:17 +01:00
//! 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;
2020-09-14 10:37:51 +02:00
mod shelly;
use futures::prelude::*;
2020-09-17 14:32:53 +02:00
use futures::task::Spawn;
2020-09-14 10:37:51 +02:00
2020-09-15 14:31:10 +02:00
use crate::config::Settings;
2020-09-14 10:37:51 +02:00
use crate::error::Result;