// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright (c) 2026 Jarkko Sakkinen
//! Command-line interface definition.
usestd::path::PathBuf;useargh::FromArgs;/// Create a bootable Windows installation USB or raw disk image from an ISO
#[derive(FromArgs)]pubstructArgs{/// path to the Windows installation ISO image
#[argh(positional)]pubiso: PathBuf,
/// target whole-disk block device or raw image file, e.g. /dev/sdb or windows.img
#[argh(positional)]puboutput: PathBuf,
}