elasticstream/data.go

9 lines
165 B
Go
Raw Normal View History

2024-10-03 12:40:46 +05:30
package elasticstream
type Data struct {
// we can store index name
Header map[string]string
// actual hit from elastic search
Payload map[string]interface{}
}