use clap::Parser;
use crate::terminal::args::BlockTarget;
const ABOUT: &str = "Unblock repositories or nodes to allow them to be seeded or followed";
#[derive(Parser, Debug)]
#[command(about = ABOUT, disable_version_flag = true)]
pub struct Args {
#[arg(value_name = "RID|NID")]
pub(super) target: BlockTarget,
}