summaryrefslogtreecommitdiff
path: root/doStats.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-30 15:15:43 -0500
committerJeff Carr <[email protected]>2025-08-30 15:15:43 -0500
commitc7896e47f9c91e330b023bdb34a7540f193a5422 (patch)
tree76a0801d34c7b53442e2e5d2ecaeba5ef5e961c0 /doStats.go
parent7f8f5e3b9b37fccbb357b70e6490823a8b22ae7e (diff)
code cleanup of early drafts of code from Gemini AI
Diffstat (limited to 'doStats.go')
-rw-r--r--doStats.go8
1 files changed, 2 insertions, 6 deletions
diff --git a/doStats.go b/doStats.go
index 3013c97..01fc0d6 100644
--- a/doStats.go
+++ b/doStats.go
@@ -9,12 +9,8 @@ import (
)
func doStats() {
- if len(argv.Stats) != 2 {
- log.Warn("expected 2 arguments for --stats")
- return
- }
- sessionUuid := argv.Stats[0]
- statsString := argv.Stats[1]
+ sessionUuid := argv.Uuid
+ statsString := "todo: set this somehow"
// Find the "auto" chat, or create it if it doesn't exist.
var autoChat *chatpb.Chat