bffh/src/modules.rs

10 lines
292 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.
2020-09-14 10:37:51 +02:00
mod shelly;
2020-12-14 11:02:46 +01:00
pub use shelly::Shelly;