mirror of
https://github.com/codex-storage/nim-codex-dht.git
synced 2025-02-23 00:58:17 +00:00
15 lines
213 B
Nim
15 lines
213 B
Nim
|
import
|
||
|
../discv5/[node]
|
||
|
|
||
|
type
|
||
|
AddValueMessage* = object
|
||
|
cId*: NodeId
|
||
|
value*: seq[byte]
|
||
|
|
||
|
GetValueMessage* = object
|
||
|
cId*: NodeId
|
||
|
|
||
|
ValueMessage* = object
|
||
|
#total*: uint32
|
||
|
value*: seq[byte]
|