summaryrefslogtreecommitdiff
path: root/doPlayback.go
diff options
context:
space:
mode:
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)
+ }
+}