summaryrefslogtreecommitdiff
path: root/doPlayback.go
blob: 46e7fcbce0ea07beaf3389f42a028d0e4f19f9fe (plain)
1
2
3
4
5
6
7
8
9
10
11
package main

import (
	"go.wit.com/log"
)

func doPlayback() {
	for i, chat := range me.chats.GetChats() {
		log.Info(i, chat.Uuid, chat.From)
	}
}