/// # Commands
////// Subcommands and their arguments
useclap::Subcommand;// use libginst::types::FileType;
#[derive(Subcommand)]pubenumCommand{/// Execute installation steps
Install {#[arg(long, short)]/// install all (missing)
all:bool,/// the Program to install
program:Option<String>,},/// Execute configuration steps
Configure {#[arg(long, short)]/// configure all
all:bool,/// the Program to configure
program:Option<String>,},// Export the given file to a different format
// Export {
// #[arg(value_enum)]
// filetype: FileType,
// },
}