mirror of
https://github.com/status-im/nim-codex.git
synced 2025-02-08 00:44:53 +00:00
10 lines
234 B
Nim
10 lines
234 B
Nim
type CliOption* = object
|
|
key*: string # option key, including `--`
|
|
value*: string # option value
|
|
|
|
proc `$`*(option: CliOption): string =
|
|
var res = option.key
|
|
if option.value.len > 0:
|
|
res &= "=" & option.value
|
|
return res
|