ghidra-version-manager 0.8.0

Ghidra Version Manager
1
2
3
4
5
6
7
8
9
10
use clap::Subcommand;

#[derive(Debug, Subcommand)]
pub enum DefaultSubCmd {
    /// Display the current Ghidra version
    Show,

    /// Set the default version, installing it if needed
    Set { tag: String },
}