use clap::{Args, Subcommand};
use std::path::PathBuf;
#[derive(Args, Debug)]
pub struct GraphArgs {
#[command(subcommand)]
pub action: GraphSubcommand,
}
#[derive(Subcommand, Debug)]
pub enum GraphSubcommand {
Diff {
old_lock: PathBuf,
new_lock: PathBuf,
#[arg(long)]
json: bool,
},
}