1 2 3 4 5 6 7 8 9
use clap::Args; use std::path::PathBuf; #[derive(Args)] pub struct SnapshotOptions { /// Path inside the repository to snapshot (defaults to the current directory) #[arg(default_value = ".")] pub path: PathBuf, }