bffh/src/modules.rs
Gregor Reitzenstein c5d733d888 Make compile
2020-12-02 17:12:25 +01:00

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;