10 lines
131 B
Go
10 lines
131 B
Go
|
package events
|
||
|
|
||
|
type Event interface{}
|
||
|
|
||
|
type Envelope struct {
|
||
|
Tx int64 `json:",omitempty"`
|
||
|
Topic string
|
||
|
Event interface{}
|
||
|
}
|