mirror of
https://github.com/status-im/nim-confutils.git
synced 2025-02-08 10:14:10 +00:00
11 lines
191 B
Nim
11 lines
191 B
Nim
|
import
|
||
|
../../confutils,
|
||
|
../../confutils/defs
|
||
|
|
||
|
type
|
||
|
TestConf* = object
|
||
|
dataDir* {.name: "data-dir" }: OutDir
|
||
|
importDir* {.name: "data-dir" }: OutDir
|
||
|
|
||
|
let c = TestConf.load()
|