use clap::{Args, Subcommand};
#[derive(Args, Debug)]
pub struct RemoteArgs {
#[command(subcommand)]
pub action: RemoteSubcommand,
}
#[derive(Subcommand, Debug)]
pub enum RemoteSubcommand {
Exec {
#[arg(short, long, default_value = "http://localhost:8980")]
endpoint: String,
#[arg(short, long)]
action_digest: String,
},
}