use std::path::PathBuf;
use clap::Parser;
#[derive(Parser, Debug)]
#[command(version, about, long_about = None)]
pub(crate) struct Args {
pub location: PathBuf,
#[arg(long)]
pub image: bool,
#[arg(long)]
#[cfg(windows)]
pub raw_disc: bool,
#[arg(long)]
pub runtime: Option<PathBuf>,
}