mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-05 16:15:56 +00:00
13 lines
176 B
Go
13 lines
176 B
Go
package db
|
|
|
|
type Message struct {
|
|
Key string `json:key`
|
|
Data interface{} `json:data`
|
|
Destination Location
|
|
}
|
|
|
|
type Envelope struct {
|
|
Message *Message
|
|
Location *Location
|
|
}
|
|
|