mirror of
https://github.com/status-im/nim-confutils.git
synced 2025-01-09 11:45:39 +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()
|