diff options
| author | Jeff Carr <[email protected]> | 2025-08-30 14:42:57 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-30 14:42:57 -0500 |
| commit | 7f8f5e3b9b37fccbb357b70e6490823a8b22ae7e (patch) | |
| tree | 11b6f74e8d3f33b3fdb82421cb79653f65685fe8 /doGetNextAutoTopic.go | |
| parent | c971bfddf74d48d87f10f5f050b1eef3fd12bf20 (diff) | |
basic JSON parsing into genai struc
Diffstat (limited to 'doGetNextAutoTopic.go')
| -rw-r--r-- | doGetNextAutoTopic.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doGetNextAutoTopic.go b/doGetNextAutoTopic.go index 47fb524..647d209 100644 --- a/doGetNextAutoTopic.go +++ b/doGetNextAutoTopic.go @@ -1,9 +1,10 @@ package main import ( - "fmt" "strconv" "strings" + + "go.wit.com/log" ) func doGetNextAutoTopic() { @@ -20,5 +21,5 @@ func doGetNextAutoTopic() { } } } - fmt.Printf("Auto %d", max+1) + log.Printf("Auto %d", max+1) } |
