use std::path::PathBuf;
use clap::Parser;
use reqwest::Url;
#[derive(Parser, Debug)]
pub struct CommitLogArgs {
#[clap(env, long, default_value = "100ms")]
pub cl_idle_timeout: humantime::Duration,
#[clap(env, long, default_value = "default")]
pub cl_ns: String,
#[clap(env, long, default_value = "http://localhost:8082")]
pub cl_server: Url,
#[clap(env, long)]
pub cl_server_cert_path: Option<PathBuf>,
#[clap(env, long)]
pub cl_server_insecure: bool,
}