1use clap::Parser; 2 3pub const ABOUT: &str = "Display the Radicle home path"; 4 5#[derive(Parser, Debug)] 6#[command(about = ABOUT, disable_version_flag = true)] 7pub struct Args {}