1use crate::shared::info::args::InfoCommandArgs; 2use clap::Subcommand; 3 4#[derive(Subcommand, Debug)] 5pub enum InfoCommands { 6 /// Prints info about this binary. 7 Info(InfoCommandArgs), 8}