mtemp/src/cli.rs
2023-08-19 17:15:18 +02:00

14 lines
322 B
Rust

use structopt::StructOpt;
#[derive(Debug, StructOpt)]
#[structopt(
name = "temp",
about = "Simple personal CLI to gather machine temperatures."
)]
pub enum Arguments {
#[structopt(about = "Temperature in Celsius, ONLY AMD")]
CPU,
#[structopt(about = "Temperature in Celsius, ONLY NVIDIA")]
GPU,
}