use clap::Args;
use crate::cli::SharedScopeArgs;
#[derive(Debug, Clone, Args)]
#[command(about = "Show vault changes since a timestamp.")]
pub struct ChangesArgs {
#[arg(long)]
pub since: String,
#[arg(short = 'n', long)]
pub limit: Option<u16>,
#[command(flatten)]
pub scope: SharedScopeArgs,
}