mirror of
https://github.com/status-im/nim-confutils.git
synced 2025-02-03 15:53:42 +00:00
20 lines
329 B
Nim
20 lines
329 B
Nim
|
import
|
||
|
../../confutils,
|
||
|
../../confutils/defs
|
||
|
|
||
|
type
|
||
|
Command = enum
|
||
|
noCommand
|
||
|
|
||
|
TestConf* = object
|
||
|
dataDir* {.name: "data-dir" }: OutDir
|
||
|
|
||
|
case cmd* {.
|
||
|
command
|
||
|
defaultValue: noCommand }: Command
|
||
|
|
||
|
of noCommand:
|
||
|
importDir* {.name: "data-dir" }: OutDir
|
||
|
|
||
|
let c = TestConf.load()
|