nethsm_cli/cli/
info.rs

1use clap::Parser;
2
3/// The "nethsm info" command.
4#[derive(Debug, Parser)]
5#[command(
6    about = "Retrieve the info for a device",
7    long_about = "Retrieve the info for a device
8
9Retrieves the vendor and product information of the target device.
10
11Requires no authentication."
12)]
13pub struct InfoCommand {}