iowo/crates/app/src/config/cli.rs

13 lines
286 B
Rust
Raw Normal View History

2024-01-12 09:36:30 +01:00
use std::path::PathBuf;
use clap::Parser;
#[derive(Parser)]
pub(crate) struct Args {
/// Read this config file.
#[arg(short, long)]
pub config_file: Option<PathBuf>,
#[arg(long, env = "NO_STARTUP_MESSAGE", default_value = "false")]
pub no_startup_message: bool,
}