add showing group content (WIP)

This commit is contained in:
Dr. Matthias Ratajczak
2023-01-10 18:50:17 +01:00
parent 708fd56ad7
commit 3f01ae5ded
3 changed files with 16 additions and 0 deletions
+6
View File
@@ -16,6 +16,12 @@ fn get_arg_parser() -> Command<'static> {
.arg(Arg::new("group").multiple_values(true)),
)
.subcommand(Command::new(GROUPS).about("show names of imported groups"))
.subcommand(
Command::new(SHOW)
.about("show packages under an imported group")
.arg_required_else_help(true)
.arg(Arg::new("group").multiple_values(true)),
)
.subcommand(Command::new(SYNC).about("install packages from all imported groups"))
.subcommand(
Command::new(UNMANAGED)