package main
import (
"go.wit.com/lib/protobuf/chatpb"
"go.wit.com/log"
)
func dumpchat(chat *chatpb.Chat) {
for _, entry := range chat.GetEntries() {
log.Printf("Entry: %s\n", entry.GetUuid())
}