diff --git a/src/main.rs b/src/main.rs index 8fce751..13c97cd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -295,22 +295,18 @@ mod reset { mod show { use super::*; - #[derive(Subcommand)] + #[derive(Parser)] pub enum Show { /// Show the current platform flags - #[command(subcommand)] Flags, /// Show the current number of guests - #[command(subcommand)] Guests, /// Show the platform identifier - #[command(subcommand)] Identifier, /// Show the platform's firmware version - #[command(subcommand)] Version, }