longshot 0.1.13

API and CLI for ECAM-based Delonghi machines
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Coffee-related operations: brewing, monitoring, etc.

mod brew;
mod ingredients;
mod monitor;
mod parameter;
mod power;
mod recipe_list;

pub use brew::*;
pub use ingredients::*;
pub use monitor::*;
pub use parameter::*;
pub use power::*;
pub use recipe_list::*;