authentication overhaul

This commit is contained in:
2021-07-27 01:48:05 -04:00
parent 22c1abd093
commit ba11df89c8
6 changed files with 120 additions and 43 deletions

View File

@@ -18,7 +18,7 @@ pub fn get_args() -> ArgMatches<'static> {
.arg(Arg::with_name("search")
.short("s")
.long("search")
.value_name("REPO")
.value_names(&["REPO"])
.help("Search repositories for a user")
)
.arg(Arg::with_name("list")
@@ -68,4 +68,4 @@ pub fn get_args() -> ArgMatches<'static> {
.get_matches();
matches
}
}