14 lines
373 B
Nim
Raw Normal View History

2018-11-21 15:25:53 +02:00
type
DirPath* = distinct string
2018-12-19 12:52:32 +02:00
OutFilePath* = distinct string
2018-11-21 15:25:53 +02:00
ConfigurationError* = object of CatchableError
template desc*(v: string) {.pragma.}
2018-12-19 12:52:32 +02:00
template longform*(v: string) {.pragma.}
template shortform*(v: string) {.pragma.}
2018-11-21 15:25:53 +02:00
template defaultValue*(v: untyped) {.pragma.}
2018-12-19 12:52:32 +02:00
template required* {.pragma.}
template command* {.pragma.}
template argument* {.pragma.}
2018-11-21 15:25:53 +02:00