2025-02-07 14:51:03 +01:00

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