Midea/src/devices/mod.rs

8 lines
187 B
Rust
Raw Normal View History

2023-09-26 06:30:16 +00:00
pub mod e1;
pub trait DeviceBackend {
fn build_query(&self) -> ();
fn process_message(&self, msg: &str) -> ();
fn set_attribute(&self, attribute: &str, value: &str) -> ();
}