//! Configuration sourced from the CLI
useclap::Parser;usestd::path::PathBuf;/// River: A reverse proxy from Prossimo
#[derive(Parser, Debug)]pubstructCli{/// Validate all configuration data and exit
#[arg(long)]pubvalidate_configs:bool,
/// Path to the configuration file in TOML format
#[arg(long)]pubconfig_toml:Option<PathBuf>,
/// Number of threads used in the worker pool for EACH service
#[arg(long)]pubthreads_per_service:Option<usize>,
}