use std::path::PathBuf;
use clap::Subcommand;
#[derive(Subcommand, Debug)]
pub enum Commands {
Up {
private_key: Option<String>,
#[arg(short, long)]
show: bool,
#[arg(short, long)]
change: Option<String>
},
Seal {
path: Option<PathBuf>
},
Check {
path: Option<PathBuf>,
emet_path: Option<PathBuf>
}
}