nethsm_cli/cli/
info.rs

1
2
3
4
5
6
7
8
9
10
11
12
use clap::Parser;

#[derive(Debug, Parser)]
#[command(
    about = "Retrieve the info for a device",
    long_about = "Retrieve the info for a device

Retrieves the vendor and product information of the target device.

Requires no authentication."
)]
pub struct InfoCommand {}