1
0
mirror of https://github.com/vacp2p/nim-libp2p.git synced 2025-01-28 09:25:44 +00:00
2023-03-01 16:59:44 +01:00

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