use clap::Parser; #[derive(Debug, Parser)] pub struct Cli { /// Run the Tap consumer and indexer #[arg(long, default_value_t = false)] pub indexer: bool, /// Connect to label services and ingest labels (currently disabled) #[arg(long, default_value_t = false)] pub labels: bool, } pub fn parse() -> Cli { Cli::parse() }