summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorCastor Regex <[email protected]>2025-08-25 10:15:39 -0500
committerJeff Carr <[email protected]>2025-08-25 10:15:39 -0500
commit0b2ec9ce15cf17f12c6457396a9579d943115d67 (patch)
tree1f64f1f424496a930ee8fa2698fdecc19b36005e /argv.go
parentc39a2f31e65f6931b6752e89c9566613e8993c34 (diff)
fix: correct build errors and clean up code
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go24
1 files changed, 12 insertions, 12 deletions
diff --git a/argv.go b/argv.go
index b339ad3..fdcde1f 100644
--- a/argv.go
+++ b/argv.go
@@ -10,19 +10,19 @@ package main
var argv args
type args struct {
- 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'"`
- Output string `arg:"--output" help:"should get a string from regex-cli"`
- Input string `arg:"--input" help:"should get a string from regex-cli"`
- ImportFile string `arg:"--import" help:"import a file from regex-cli"`
- Stats []string `arg:"--stats" help:"add stats to a chat"`
- NewChat []string `arg:"--new-chat" help:"create a new chat"`
+ 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'"`
+ Output string `arg:"--output" help:"should get a string from regex-cli"`
+ Input string `arg:"--input" help:"should get a string from regex-cli"`
+ ImportFile string `arg:"--import" help:"import a file from regex-cli"`
+ Stats []string `arg:"--stats" help:"add stats to a chat"`
+ NewChat []string `arg:"--new-chat" help:"create a new chat"`
GetNextAutoTopic bool `arg:"--get-next-auto-topic" help:"get the next auto topic name"`
- 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"`
- BashAuto []string `arg:"--auto-complete" help:"todo: move this to go-arg"`
+ 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"`
+ BashAuto []string `arg:"--auto-complete" help:"todo: move this to go-arg"`
}
type EmptyCmd struct {