mirror of
https://github.com/logos-storage/logos-storage-network-crawler.git
synced 2026-01-03 05:53:07 +00:00
13 lines
294 B
Nim
13 lines
294 B
Nim
import pkg/stew/byteutils
|
|
import pkg/stew/endians2
|
|
import pkg/questionable
|
|
import pkg/questionable/results
|
|
import pkg/codexdht
|
|
|
|
type NodeEntry* = object
|
|
id*: NodeId
|
|
value*: string # todo: will be last-checked timestamp
|
|
|
|
proc `$`*(entry: NodeEntry): string =
|
|
$entry.id & ":" & entry.value
|