1use clap::Parser; 2 3pub(crate) const ABOUT: &str = "Displays aggregated repository and node metrics"; 4 5#[derive(Debug, Parser)] 6#[command(about = ABOUT, disable_version_flag = true)] 7pub struct Args {}