1 2 3 4 5 6 7 8 9 10
use std::path::PathBuf; use clap::Parser; #[derive(Debug, Parser)] #[command(version)] pub struct Args { #[arg(short, long)] pub config: Option<PathBuf>, }