mirror of https://github.com/vacp2p/dasy.git
12 lines
199 B
Go
12 lines
199 B
Go
|
package event
|
||
|
|
||
|
import "github.com/vacp2p/mvds/state"
|
||
|
|
||
|
// Payload represents a `dasy` packet.
|
||
|
type Payload struct {
|
||
|
Body interface{}
|
||
|
Signature []byte
|
||
|
Sender state.PeerID
|
||
|
Timestamp int64
|
||
|
}
|