You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//! # Provides a mock Ambi client that emulates real sensor hardware such as like
2
+
//! an Edge client.
3
+
//!
4
+
//! This file provides for a separation of concerns from main.rs for application
5
+
//! logic, per the standard Rust pattern.
6
+
//!
7
+
//! See `main.rs` for more details about what this application does.
8
+
//!
9
+
//! See the `LICENSE` file for Copyright and license details.
10
+
//!
11
+
//!
12
+
use clap::{Parser};
13
+
14
+
/// Defines the Ambi Mock Client command line interface as a struct
15
+
#[derive(Parser,Debug)]
16
+
#[clap(name = "Ambi Mock Client")]
17
+
#[clap(author = "Rust Never Sleeps community (https://github.com/Jim-Hodapp-Coaching/)")]
18
+
#[clap(version = "0.1.0")]
19
+
#[clap(about = "Provides a mock Ambi client that emulates real sensor hardware such as an Edge client.")]
20
+
#[clap(long_about = "This application emulates a real set of hardware sensors that can report on environmental conditions such as temperature, pressure, humidity, etc.")]
0 commit comments