wtf. this should work
This commit is contained in:
parent
d9e7420b31
commit
fbc5ebe4ce
1
argv.go
1
argv.go
|
@ -13,6 +13,7 @@ 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"`
|
||||
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"`
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
package main
|
||||
|
||||
func doOutput(s string) {
|
||||
}
|
Loading…
Reference in New Issue