alert-me/src/cli.rs

13 lines
269 B
Rust
Raw Normal View History

2024-05-11 14:38:29 +00:00
//! Cli interface.
use clap::Parser;
/// Push Alertswiss notifications to MQTT.
#[derive(Parser)]
#[command(version, about, long_about = None)]
pub struct Cli {
/// Update interval in seconds
#[arg(short, long, default_value_t = 10)]
pub interval: u64,
}