1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
use clap::{Parser, Subcommand};
#[derive(Parser)]
#[clap(author, version, about, long_about = None)]
pub struct Cli {
#[clap(value_parser)]
bin: Option<String>,
#[clap(subcommand)]
command: Command,
}
impl Cli {
pub fn called_from_cargo(&self) -> bool {
match &self.bin {
Some(bin) => bin == "gitv",
_ => false,
}
}
pub fn command(&self) -> &Command {
&self.command
}
}
#[derive(Subcommand)]
pub enum Command {
Verify,
Version,
}