ghidra-version-manager 0.7.2

Ghidra Version Manager
use clap::Subcommand;
use std::path::PathBuf;

#[derive(Debug, Subcommand)]
pub enum SettingsSubcommand {
    /// Export your current settings
    Backup {
        /// The destination
        out: PathBuf,

        /// The version to export
        tag: Option<String>,
    },

    /// Restore a prior backup
    Restore {
        /// The backup
        src: PathBuf,

        /// The version to restore to
        tag: Option<String>,
    },
}