diff options
| author | Jeff Carr <[email protected]> | 2025-08-30 15:24:54 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-30 15:24:54 -0500 |
| commit | bbb12d79e2ab03d5dd5a781a5e3b1192c548721e (patch) | |
| tree | 4f7a152f1e14f9d181c9e9614925a5184381f187 /argv.go | |
| parent | c7896e47f9c91e330b023bdb34a7540f193a5422 (diff) | |
more code cleanups
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -25,8 +25,9 @@ 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"` + 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"` } func (args) Version() string { |
