13 lines
294 B
Nim
Raw Normal View History

2025-02-05 16:06:04 +01:00
import pkg/stew/byteutils
import pkg/stew/endians2
import pkg/questionable
import pkg/questionable/results
2025-02-07 14:51:03 +01:00
import pkg/codexdht
2025-02-05 16:06:04 +01:00
type NodeEntry* = object
2025-02-07 14:51:03 +01:00
id*: NodeId
value*: string # todo: will be last-checked timestamp
2025-02-05 16:06:04 +01:00
proc `$`*(entry: NodeEntry): string =
2025-02-07 14:51:03 +01:00
$entry.id & ":" & entry.value