1 2 3 4 5 6 7 8 9 10 11
use std::path::PathBuf; use clap::Parser; /// Allows to bind ports and execute initialization commands #[derive(Parser, Debug)] #[command(author, version, about, long_about = None)] pub struct PortPlumberArgs { /// Config file path #[arg(short, long)] pub config: Option<PathBuf>, }