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