mirror of
https://github.com/logos-storage/logos-storage-network-crawler.git
synced 2026-01-02 21:43:11 +00:00
12 lines
252 B
Nim
12 lines
252 B
Nim
import pkg/stew/byteutils
|
|
import pkg/stew/endians2
|
|
import pkg/questionable
|
|
import pkg/questionable/results
|
|
|
|
type NodeEntry* = object
|
|
id*: string # will be node ID
|
|
value*: string
|
|
|
|
proc `$`*(entry: NodeEntry): string =
|
|
entry.id & ":" & entry.value
|