1//go:generate msgp 2 3package fluent 4 5//msgp:tuple Entry 6type Entry struct { 7 Time int64 `msg:"time"` 8 Record interface{} `msg:"record"` 9} 10 11//msgp:tuple Forward 12type Forward struct { 13 Tag string `msg:"tag"` 14 Entries []Entry `msg:"entries"` 15 Option interface{} `msg:"option"` 16} 17 18//msgp:tuple Message 19type Message struct { 20 Tag string `msg:"tag"` 21 Time int64 `msg:"time"` 22 Record interface{} `msg:"record"` 23 Option interface{} `msg:"option"` 24} 25