diff options
| author | Jeff Carr <[email protected]> | 2025-08-21 10:52:40 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-21 10:52:40 -0500 |
| commit | ad39cfacbdc142c130ebef0b662ec007677e2acd (patch) | |
| tree | fd94e039e068bfe967296f4e70abc889815634d5 /argv.go | |
day1v0.0.1
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 37 |
1 files changed, 37 insertions, 0 deletions
@@ -0,0 +1,37 @@ +// Copyright 2017-2025 WIT.COM Inc. All rights reserved. +// Use of this source code is governed by the GPL 3.0 + +package main + +/* + this parses the command line arguements using alex flint's go-arg +*/ + +var argv args + +type args struct { + 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"` + BashAuto []string `arg:"--auto-complete" help:"todo: move this to go-arg"` +} + +type EmptyCmd struct { +} + +type PlaybackCmd struct { + List *EmptyCmd `arg:"subcommand:list" help:"list memories"` + Force bool `arg:"--all" help:"try to strong arm things"` +} + +func (args) Version() string { + return ARGNAME + " " + VERSION + " Built on " + BUILDTIME +} + +func (a args) Description() string { + return ` +gemini -- interact with Googles' Gemini AI + ` +} |
