ghidra-version-manager 0.7.3

Ghidra Version Manager
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use clap::Subcommand;

#[derive(Debug, Subcommand)]
pub enum PrefsSubCmd {
    /// Display the current prefs
    Show,

    /// Set the prefs
    Set {
        /// The key to set
        key: String,

        /// The new value
        value: String,
    },
}