1
0
Fork 0
forked from sigil-03/power

make SET stub + move elements into system wrapper

This commit is contained in:
sigil-03 2025-04-06 14:34:15 -06:00
parent fd120be85e
commit 987150c9b6
6 changed files with 108 additions and 65 deletions

5
src/control.rs Normal file
View file

@ -0,0 +1,5 @@
use crate::types::Error;
pub trait Control {
async fn set_power(&self) -> Result<(), Error>;
}