summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-21 14:13:42 -0500
committerJeff Carr <[email protected]>2025-08-21 14:13:42 -0500
commita10b75d453c266764e4e74d64cf63e3902625d4a (patch)
tree480ee28b62cbc399e843d6e45a8179c6d3cb942e /argv.go
parentb221e7a95cc27c8b0b17c7322bea02b88888e033 (diff)
make an --add <filename> option
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/argv.go b/argv.go
index d1ce699..398cd8d 100644
--- a/argv.go
+++ b/argv.go
@@ -10,7 +10,7 @@ package main
var argv args
type args struct {
- Add *EmptyCmd `arg:"subcommand:add" help:"add a conversation"`
+ Add string `arg:"--add" help:"add a new chat"`
Format *EmptyCmd `arg:"subcommand:format" help:"add a conversation"`
Playback *PlaybackCmd `arg:"subcommand:playback" help:"dump your prior conversations to the terminal'"`
Force bool `arg:"--force" help:"try to strong arm things"`