use clap::{Parser, Subcommand};
#[derive(Parser)]
#[command(name = "this-me", version, about = "Declarative identity manager for dApps")]
pub struct Cli {
#[command(subcommand)]
pub command: Commands,
}
#[derive(Subcommand)]
pub enum Commands {
Create {
alias: String,
hash: String,
},
List,
ChangeHash {
alias: String,
old_hash: String,
new_hash: String,
},
Display {
alias: String,
hash: String,
},
}