summaryrefslogtreecommitdiff
path: root/doPlayback.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-22 00:50:20 -0500
committerJeff Carr <[email protected]>2025-08-22 00:50:20 -0500
commit043386b95b7b6d44c98a47e40520626ce590d852 (patch)
tree2f20be1a6178fcdce08b29eb3ca63206e250436b /doPlayback.go
parent279c0d0e6ca94a7a323fd2778bf090d7dff8ceb5 (diff)
GPL
Diffstat (limited to 'doPlayback.go')
-rw-r--r--doPlayback.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/doPlayback.go b/doPlayback.go
new file mode 100644
index 0000000..46e7fcb
--- /dev/null
+++ b/doPlayback.go
@@ -0,0 +1,11 @@
+package main
+
+import (
+ "go.wit.com/log"
+)
+
+func doPlayback() {
+ for i, chat := range me.chats.GetChats() {
+ log.Info(i, chat.Uuid, chat.From)
+ }
+}