mirror of
https://github.com/logos-messaging/logos-messaging-go-bindings.git
synced 2026-01-25 00:43:10 +00:00
git-subtree-dir: third-party/nwaku git-subtree-split: d94cb7c73631ffd4b934839ba58bc622d331a135
17 lines
399 B
Nim
17 lines
399 B
Nim
{.push raises: [].}
|
|
|
|
import confutils/defs as confutilsDefs
|
|
import ./envvar_serialization
|
|
|
|
export envvar_serialization, confutilsDefs
|
|
|
|
template readConfutilsType(T: type) =
|
|
template readValue*(r: var EnvvarReader, value: var T) =
|
|
value = T r.readValue(string)
|
|
|
|
readConfutilsType InputFile
|
|
readConfutilsType InputDir
|
|
readConfutilsType OutPath
|
|
readConfutilsType OutDir
|
|
readConfutilsType OutFile
|