bffh/src/modules.rs
2021-09-21 09:06:49 +02:00

13 lines
332 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 shelly;
pub use shelly::Shelly;
mod process;
pub use process::Process;