blob: 51e69574413c6589181fb64b83c5417f20e47d3f [file] [log] [blame]
package events
type Event interface{}
type Envelope struct {
Tx int64 `json:",omitempty"`
Topic string
Event interface{}
}