summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/argv.go b/argv.go
index 38a01f6..d1ce699 100644
--- a/argv.go
+++ b/argv.go
@@ -10,8 +10,9 @@ package main
var argv args
type args struct {
+ Add *EmptyCmd `arg:"subcommand:add" help:"add a conversation"`
+ Format *EmptyCmd `arg:"subcommand:format" help:"add a conversation"`
Playback *PlaybackCmd `arg:"subcommand:playback" help:"dump your prior conversations to the terminal'"`
- Add *EmptyCmd `arg:"subcommand:add" help:"add a conversation"`
Force bool `arg:"--force" help:"try to strong arm things"`
Verbose bool `arg:"--verbose" help:"show more output"`
Bash bool `arg:"--bash" help:"generate bash completion"`
@@ -22,7 +23,7 @@ type EmptyCmd struct {
}
type PlaybackCmd struct {
- List *EmptyCmd `arg:"subcommand:list" help:"list memories"`
+ List *EmptyCmd `arg:"subcommand:list" help:"list memories"`
Force bool `arg:"--all" help:"try to strong arm things"`
}