75 lines
2.4 KiB
Rust
75 lines
2.4 KiB
Rust
use clap::{Arg, App, ArgGroup, SubCommand};
|
|
|
|
pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
|
|
app.arg(Arg::with_name("id")
|
|
.long("id")
|
|
.short("i")
|
|
.takes_value(true)
|
|
.required(true)
|
|
.help("Use this entry"))
|
|
|
|
.arg(Arg::with_name("add")
|
|
.long("add")
|
|
.short("a")
|
|
.takes_value(true)
|
|
.required(false)
|
|
.multiple(true)
|
|
.help("Add this tag"))
|
|
|
|
.arg(Arg::with_name("remove")
|
|
.long("remove")
|
|
.short("r")
|
|
.takes_value(true)
|
|
.required(false)
|
|
.multiple(true)
|
|
.help("Remove this tag"))
|
|
|
|
.arg(Arg::with_name("set")
|
|
.long("set")
|
|
.short("s")
|
|
.takes_value(true)
|
|
.required(false)
|
|
.multiple(true)
|
|
.help("Set these tags"))
|
|
|
|
.subcommand(SubCommand::with_name("list")
|
|
.about("List tags (default)")
|
|
.version("0.1")
|
|
.arg(Arg::with_name("json")
|
|
.long("json")
|
|
.short("j")
|
|
.takes_value(false)
|
|
.required(false)
|
|
.help("List as JSON"))
|
|
.arg(Arg::with_name("linewise")
|
|
.long("linewise")
|
|
.short("l")
|
|
.takes_value(false)
|
|
.required(false)
|
|
.help("One tag per line"))
|
|
.arg(Arg::with_name("commasep")
|
|
.long("comma")
|
|
.short("c")
|
|
.takes_value(false)
|
|
.required(false)
|
|
.help("Commaseperated (default)"))
|
|
.arg(Arg::with_name("sep")
|
|
.long("sep")
|
|
.short("s")
|
|
.takes_value(true)
|
|
.required(false)
|
|
.help("Seperated by string"))
|
|
|
|
.group(ArgGroup::with_name("list-group")
|
|
.args(&[
|
|
"json",
|
|
"linewise",
|
|
"commasep",
|
|
"sep",
|
|
])
|
|
.required(true))
|
|
)
|
|
|
|
}
|
|
|
|
|