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