1use clap::Parser;
2
3#[derive(Debug, Parser)]
4pub struct Cli {
5 /// Run the Tap consumer and indexer
6 #[arg(long, default_value_t = false)]
7 pub indexer: bool,
8 /// Connect to label services and ingest labels (currently disabled)
9 #[arg(long, default_value_t = false)]
10 pub labels: bool,
11}
12
13pub fn parse() -> Cli {
14 Cli::parse()
15}