mirror of https://github.com/vacp2p/nim-libp2p.git
10 lines
188 B
Plaintext
10 lines
188 B
Plaintext
|
import strutils
|
||
|
|
||
|
proc hasSkipParentCfg: bool =
|
||
|
for param in 0..<paramCount():
|
||
|
if "skipParent" in paramStr(param):
|
||
|
return true
|
||
|
|
||
|
when hasSkipParentCfg():
|
||
|
import ../config.nims
|