elasticstream/data.go

9 lines
165 B
Go

package elasticstream
type Data struct {
// we can store index name
Header map[string]string
// actual hit from elastic search
Payload map[string]interface{}
}