aranet-cli 0.2.0

Command-line interface for Aranet environmental sensors
Documentation
//! Command implementations for the CLI.

mod alias;
mod cache;
mod doctor;
mod history;
mod info;
mod read;
pub mod report;
mod scan;
mod server;
mod set;
mod status;
mod sync;
mod watch;

pub use alias::{AliasAction, cmd_alias};
pub use cache::cmd_cache;
pub use doctor::cmd_doctor;
pub use history::{HistoryArgs, cmd_history};
pub use info::cmd_info;
pub use read::{DeviceReading, cmd_read};
pub use report::cmd_report;
pub use scan::cmd_scan;
pub use server::{ServerArgs, cmd_server};
pub use set::cmd_set;
pub use status::cmd_status;
pub use sync::{SyncArgs, cmd_sync};
pub use watch::{WatchArgs, cmd_watch};