summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorCastor Gemini <[email protected]>2025-08-24 01:21:01 -0500
committerJeff Carr <[email protected]>2025-08-24 01:21:01 -0500
commit357c20027fda714af0e08b3f9ddf89edfeb6ef39 (patch)
tree8e69ca6ecc1a4e7b7c87ee4e5fbd2bd25f80b639 /argv.go
parent0a28d985b88866d131e3c6e2ce025edb99c1258c (diff)
Refactor: Rename gemini to regex throughout the codebase
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/argv.go b/argv.go
index cfba175..ff5c70f 100644
--- a/argv.go
+++ b/argv.go
@@ -13,9 +13,9 @@ 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 gemini-cli"`
- Input string `arg:"--input" help:"should get a string from gemini-cli"`
- ImportFile string `arg:"--import" help:"import a file from gemini-cli"`
+ 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"`
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"`
@@ -37,6 +37,6 @@ func (args) Version() string {
func (a args) Description() string {
return `
-gemini -- interact with Googles' Gemini AI
+regex -- interact with Googles' Gemini AI
`
}