1 2 3 4 5 6 7 8
use clap::Parser; use std::path::PathBuf; #[derive(Parser, Debug)] #[command(version, about, long_about = None)] pub struct Args { pub shortcut_dir: Option<PathBuf> }