summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-08 23:12:31 -0500
committerJeff Carr <[email protected]>2025-09-08 23:14:03 -0500
commitf1c1ca950c0a2868dc7feb6f86a0b48254d95a94 (patch)
tree7c9ef143f6589397b28ba2032742a082128afc90 /argv.go
parent7ea7393d6c41b8d656442ead4030c8ea8be27dda (diff)
stub in a gui. doesn't workv0.0.30
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/argv.go b/argv.go
index 29a4240..500229e 100644
--- a/argv.go
+++ b/argv.go
@@ -17,6 +17,7 @@ var argv args
type args struct {
Pull *EmptyCmd `arg:"subcommand:pull" help:"'git pull' on the repos"`
List *EmptyCmd `arg:"subcommand:list" help:"list the repos"`
+ Gui *EmptyCmd `arg:"subcommand:gui" help:"show gui"`
Merge *EmptyCmd `arg:"subcommand:merge" help:"merge in new patchsets"`
Init *EmptyCmd `arg:"subcommand:init" help:"init the repo list"`
Port int `arg:"--port" default:"2520" help:"port to run on"`