diff options
| author | Jeff Carr <[email protected]> | 2025-08-30 15:15:43 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-30 15:15:43 -0500 |
| commit | c7896e47f9c91e330b023bdb34a7540f193a5422 (patch) | |
| tree | 76a0801d34c7b53442e2e5d2ecaeba5ef5e961c0 /doStats.go | |
| parent | 7f8f5e3b9b37fccbb357b70e6490823a8b22ae7e (diff) | |
code cleanup of early drafts of code from Gemini AI
Diffstat (limited to 'doStats.go')
| -rw-r--r-- | doStats.go | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -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 |
