use clap::{Args, Subcommand};
#[derive(Debug, Args)]
pub struct RunsArgs {
#[command(subcommand)]
pub action: RunsAction,
}
#[derive(Debug, Subcommand)]
pub enum RunsAction {
List {
#[arg(long)]
json: bool,
},
Show {
id: String,
#[arg(long)]
json: bool,
},
Prune {
#[arg(long)]
keep: Option<usize>,
},
}