diff options
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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"` } |
