use clap::Subcommand;
use crate::types::FileType;
#[derive(Subcommand)]
pub enum Command {
Install {
#[arg(long, short)]
all: bool,
program: Option<String>,
},
Configure {
#[arg(long, short)]
all: bool,
program: Option<String>,
},
Export {
#[arg(value_enum)]
filetype: FileType,
},
}