mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-06 23:43:08 +00:00
14 lines
251 B
Nim
14 lines
251 B
Nim
|
|
import pkg/questionable
|
||
|
|
|
||
|
|
type
|
||
|
|
CliOption* = object of RootObj
|
||
|
|
nodeIdx*: ?int
|
||
|
|
key*: string
|
||
|
|
value*: string
|
||
|
|
|
||
|
|
proc `$`*(option: CliOption): string =
|
||
|
|
var res = option.key
|
||
|
|
if option.value.len > 0:
|
||
|
|
res &= "=" & option.value
|
||
|
|
return res
|