diff options
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -27,9 +27,11 @@ type EmptyCmd struct { } type PlaybackCmd struct { - List *EmptyCmd `arg:"subcommand:list" help:"list memories"` - Long *EmptyCmd `arg:"subcommand:long" help:"show info on each chat"` - Purge *EmptyCmd `arg:"subcommand:purge" help:"verify chat uuids & purge empty chats"` + Last *EmptyCmd `arg:"subcommand:last" help:"dump the last one"` + List *EmptyCmd `arg:"subcommand:list" help:"list memories"` + Long *EmptyCmd `arg:"subcommand:long" help:"show info on each chat"` + Purge *EmptyCmd `arg:"subcommand:purge" help:"verify chat uuids & purge empty chats"` + Submit *EmptyCmd `arg:"subcommand:submit" help:"convert and submit the last entry"` } func (args) Version() string { |
