1 2 3 4 5 6 7 8 9 10 11 12
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()) } }