diff options
| author | Jeff Carr <[email protected]> | 2025-08-21 12:30:36 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-21 12:30:36 -0500 |
| commit | b221e7a95cc27c8b0b17c7322bea02b88888e033 (patch) | |
| tree | bde6b41a56167d9f5352e61459c9d7ba4a0e6496 /argv.go | |
| parent | e655b37e60a19cbdd1aeddbff0494d74b6a9c5d9 (diff) | |
add ConfigSave()
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"` } |
