cargo-governor 2.0.0

Machine-First, LLM-Ready, CI/CD-Native release automation tool for Rust crates
Documentation
//! Resume command options

use clap::Parser;

/// Resume command options
#[derive(Parser, Debug, Clone)]
pub struct ResumeOpts {
    /// Checkpoint ID to resume from
    #[arg(short = 'c', long)]
    pub checkpoint: Option<String>,

    /// List available checkpoints
    #[arg(long)]
    pub list: bool,

    /// Clean old checkpoints
    #[arg(long)]
    pub clean: bool,
}