mirror of
https://github.com/status-im/nim-libp2p.git
synced 2025-01-11 13:34:26 +00:00
10 lines
188 B
Nim
10 lines
188 B
Nim
import strutils
|
|
|
|
proc hasSkipParentCfg: bool =
|
|
for param in 0..<paramCount():
|
|
if "skipParent" in paramStr(param):
|
|
return true
|
|
|
|
when hasSkipParentCfg():
|
|
import ../config.nims
|