mirror of
https://github.com/codex-storage/nim-libp2p.git
synced 2025-02-05 07:33:28 +00:00
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
|