usestd::path::PathBuf;useclap::Parser;/// BDGM disc image builder
#[derive(Parser, Debug)]#[command(version, about, long_about = None)]pub(crate)structArgs{/// The mounted root of the game disc. This is the parent of the BDGM directory.
publocation: PathBuf,
}