diff options
| author | Jeff Carr <[email protected]> | 2025-01-07 22:27:54 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-07 22:27:54 -0600 |
| commit | b27a1fccad08a8aac11b73097e93a6aa97bf87f7 (patch) | |
| tree | 02dcc194e97572539a295fc755ec6424a0feddbe /argv.go | |
| parent | 5eb51f28327f3b2fd537d681f38b28dbd673057e (diff) | |
allow delete for a single repo
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -20,6 +20,7 @@ type args struct { Patch *PatchCmd `arg:"subcommand:patch" help:"examine and make patch sets"` GitPull *FindCmd `arg:"subcommand:pull" help:"run 'git pull'"` Rescan *EmptyCmd `arg:"subcommand:rescan" help:"recreate the git protobuf repos.pb file"` + Delete *EmptyCmd `arg:"subcommand:delete" help:"untrack a repo"` URL string `arg:"--connect" help:"gowebd url"` Bash bool `arg:"--bash" help:"generate bash completion"` BashAuto []string `arg:"--auto-complete" help:"does the actual autocompletion"` @@ -29,6 +30,8 @@ type args struct { type EmptyCmd struct { } +type testCmd string + type PatchCmd struct { List *EmptyCmd `arg:"subcommand:list" help:"list available patches"` Show *EmptyCmd `arg:"subcommand:show" help:"show a specific patch"` |
