useclap::Parser;usestd::path::PathBuf;#[derive(Clone, Debug, Parser)]pubstructConfig{/// Path to the docx file to read from
#[clap(long)]pubextract_from_docx: PathBuf,
/// The path to an existing .xcstrings file to merge the localizations from
#[clap(long)]pubbase_xcstrings: PathBuf,
/// The path to an existing or non-existing .xcstrings file to merge the localizations to
#[clap(long)]pubupdated_xcstrings: PathBuf,
}