1 2 3 4 5 6 7 8 9 10 11 12 13
//! Command line interface. use std::path::PathBuf; use clap::Parser; /// Command line arguments for signing. #[derive(Debug, Parser)] pub struct Cli { /// The path to a file being signed #[arg(env = "SIGNSTAR_REQUEST_FILE")] pub input: PathBuf, }