diff options
| author | Jeff Carr <[email protected]> | 2025-08-21 10:59:11 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-21 10:59:11 -0500 |
| commit | e655b37e60a19cbdd1aeddbff0494d74b6a9c5d9 (patch) | |
| tree | 2a0448dd9cd10cf2c5f921bf30beb5ab56872623 /main.go | |
| parent | ad39cfacbdc142c130ebef0b662ec007677e2acd (diff) | |
misc
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -8,11 +8,10 @@ package main import ( "embed" "os" - "strings" "go.wit.com/dev/alexflint/arg" "go.wit.com/gui" - "go.wit.com/lib/protobuf/gitpb" + "go.wit.com/lib/protobuf/chatpb" "go.wit.com/log" ) @@ -31,6 +30,7 @@ var ARGNAME string = "gemini" // using this for now. triggers config save var configSave bool +/* func getVersion(repo *gitpb.Repo, name string) string { cmd := []string{"git", "describe", "--tags", "--always", name} result, _ := repo.RunQuiet(cmd) @@ -39,6 +39,7 @@ func getVersion(repo *gitpb.Repo, name string) string { return strings.TrimSpace(output) } +*/ func main() { me = new(mainType) @@ -64,6 +65,9 @@ func main() { okExit("") } + log.Info("trying chatpb") + chatpb.TestChat() + // if opening the GUI, always check git for dirty repos log.Info("open the gui here") // doGui() |
